qemu_mode/unicorn_mode scripts: fix '==' in '['

This commit is contained in:
hexcoder-
2020-03-21 19:31:15 +01:00
parent 087bc6daeb
commit a5af81506f
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -123,7 +123,7 @@ if echo "$CC" | grep -qF /afl-; then
fi
if [ "$PREREQ_NOTFOUND" == "1" ]; then
if [ "$PREREQ_NOTFOUND" = "1" ]; then
exit 1
fi