diff options
author | Vito <48046520+AlbertnQ@users.noreply.github.com> | 2024-07-08 14:34:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-08 08:34:06 +0200 |
commit | 365129d811e3207651ede2330e681ae43acab4d4 (patch) | |
tree | 69183e8818fc047636bf9c8287a730acec06436a | |
parent | b840ac91dc1d53cb0216edcecc9a0f17ab6e64db (diff) | |
download | afl++-365129d811e3207651ede2330e681ae43acab4d4.tar.gz |
Update sample_all.sh (#2146)
Incorrect shell syntax
-rw-r--r-- | unicorn_mode/samples/c/sample_all.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unicorn_mode/samples/c/sample_all.sh b/unicorn_mode/samples/c/sample_all.sh index 01daf365..3bb396e7 100644 --- a/unicorn_mode/samples/c/sample_all.sh +++ b/unicorn_mode/samples/c/sample_all.sh @@ -12,7 +12,7 @@ fi -if [ ! test -e $DIR/harness]; then +if [ ! -e $DIR/harness ]; then echo "[!] harness not found in $DIR" exit 1 -fi \ No newline at end of file +fi |