fix custom mutator build scripts

This commit is contained in:
vanhauser-thc
2022-09-26 03:43:45 +02:00
parent ed54532f29
commit 77f253c1b9
3 changed files with 3 additions and 3 deletions

View File

@ -125,7 +125,7 @@ else
} }
fi fi
test -d json-c/.git || { echo "[-] not checked out, please install git or check your internet connection." ; exit 1 ; } test -e json-c/.git || { echo "[-] not checked out, please install git or check your internet connection." ; exit 1 ; }
echo "[+] Got json-c." echo "[+] Got json-c."
test -e json-c/.libs/libjson-c.a || { test -e json-c/.libs/libjson-c.a || {

View File

@ -119,7 +119,7 @@ else
} }
fi fi
test -f grammar_mutator/.git || { echo "[-] not checked out, please install git or check your internet connection." ; exit 1 ; } test -e grammar_mutator/.git || { echo "[-] not checked out, please install git or check your internet connection." ; exit 1 ; }
echo "[+] Got grammar mutator." echo "[+] Got grammar mutator."
cd "grammar_mutator" || exit 1 cd "grammar_mutator" || exit 1