From 1f4aaf01cb7a9fbe1d0960f58108c458fa566b72 Mon Sep 17 00:00:00 2001 From: iphydf Date: Fri, 1 Apr 2022 16:58:17 +0000 Subject: [PATCH] chore: Fix path to fuzzer binaries in clusterfuzz build. --- .clusterfuzzlite/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clusterfuzzlite/build.sh b/.clusterfuzzlite/build.sh index 066fb8e9..57985e72 100644 --- a/.clusterfuzzlite/build.sh +++ b/.clusterfuzzlite/build.sh @@ -21,5 +21,5 @@ for TARGET in $FUZZ_TARGETS; do cmake --build ./ --target "$TARGET" # copy to output files - cp "$WORK"/"$TARGET" "$OUT"/ + cp "$WORK/testing/fuzzing/$TARGET" "$OUT"/ done