mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-12 01:58:17 +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
|
||||
|
||||
if [ "$PREREQ_NOTFOUND" == "1" ]; then
|
||||
if [ "$PREREQ_NOTFOUND" = "1" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user