diff options
-rwxr-xr-x | afl-cmin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/afl-cmin b/afl-cmin index e9d713aa..9179628e 100755 --- a/afl-cmin +++ b/afl-cmin @@ -330,7 +330,7 @@ BEGIN { } else { stat_format = "-f '%z %N'" # *BSD, MacOS } - cmdline = "cd "in_dir" && find . -maxdepth 1 -type f -exec stat "stat_format" \\{\\} \\; | sort -n | cut -d' ' -f2-" + cmdline = "cd "in_dir" && find . \\( ! -name . -a -type d -prune \\) -o -type f -exec stat "stat_format" \\{\\} \\; | sort -n | cut -d' ' -f2-" while (cmdline | getline) { infilesSmallToBig[i++] = $0 } |