Do not escape quotes anymore in build.sh

cat is used now, not an echo of a "".

Change-Id: I36036ff2110f94a99bf1581c6c0d30326161314b
This commit is contained in:
Vincent Rabaud 2024-06-11 13:35:14 +02:00
parent ea0e121b6a
commit 3ba8af1a33

View File

@ -73,7 +73,7 @@ for fuzz_main_file in $FUZZ_TEST_BINARIES_OUT_PATHS; do
cat << EOF > $OUT/$TARGET_FUZZER
#!/bin/sh
# LLVMFuzzerTestOneInput for fuzzer detection.
this_dir=\$(dirname \"\$0\")
this_dir=\$(dirname "\$0")
export TEST_DATA_DIRS=\$this_dir/corpus
chmod +x \$this_dir/$fuzz_basename
\$this_dir/$fuzz_basename --fuzz=$fuzz_entrypoint -- \$@