Commit fff205dc7f40bd58a0fc712798a5b843cf496b15

Authored by m-holger
1 parent af66bf56

Try moving only files matching *_fuzzer* in fuzzer build

Showing 1 changed file with 1 additions and 1 deletions
fuzz/oss-fuzz-build
@@ -32,7 +32,7 @@ for future in ON OFF; do @@ -32,7 +32,7 @@ for future in ON OFF; do
32 cmake --install build --component fuzz 32 cmake --install build --component fuzz
33 if [[ $future == ON ]]; then 33 if [[ $future == ON ]]; then
34 pushd $OUT 34 pushd $OUT
35 - for i in *; do mv $i future_$i; done 35 + for i in *_fuzzer*; do mv $i future_$i; done
36 popd 36 popd
37 fi 37 fi
38 done 38 done