mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-13 02:28:09 +00:00
qemu_mode/unicorn_mode scripts: fix '==' in '['
This commit is contained in:
@ -90,7 +90,7 @@ if echo "$CC" | grep -qF /afl-; then
|
|||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$PREREQ_NOTFOUND" == "1" ]; then
|
if [ "$PREREQ_NOTFOUND" = "1" ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -123,7 +123,7 @@ if echo "$CC" | grep -qF /afl-; then
|
|||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$PREREQ_NOTFOUND" == "1" ]; then
|
if [ "$PREREQ_NOTFOUND" = "1" ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user