diff options
author | hexcoder- <heiko@hexco.de> | 2020-03-21 19:31:15 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-03-21 19:31:15 +0100 |
commit | a5af81506f639bf6f979f2afb22e9849004f23b3 (patch) | |
tree | 97b6bd7e27b27b772dc58907fa287a5b384746d4 /qemu_mode | |
parent | 087bc6daebae057c303483059e5916b90f4c5d0c (diff) | |
download | afl++-a5af81506f639bf6f979f2afb22e9849004f23b3.tar.gz |
qemu_mode/unicorn_mode scripts: fix '==' in '['
Diffstat (limited to 'qemu_mode')
-rwxr-xr-x | qemu_mode/build_qemu_support.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu_mode/build_qemu_support.sh b/qemu_mode/build_qemu_support.sh index a0bd245c..9e45686b 100755 --- a/qemu_mode/build_qemu_support.sh +++ b/qemu_mode/build_qemu_support.sh @@ -90,7 +90,7 @@ if echo "$CC" | grep -qF /afl-; then fi -if [ "$PREREQ_NOTFOUND" == "1" ]; then +if [ "$PREREQ_NOTFOUND" = "1" ]; then exit 1 fi |