2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-11-08 14:21:06 +00:00

Try moving only files matching *_fuzzer* in fuzzer build

This commit is contained in:
m-holger 2024-06-21 17:38:19 +01:00
parent af66bf5670
commit fff205dc7f

View File

@ -32,7 +32,7 @@ for future in ON OFF; do
cmake --install build --component fuzz
if [[ $future == ON ]]; then
pushd $OUT
for i in *; do mv $i future_$i; done
for i in *_fuzzer*; do mv $i future_$i; done
popd
fi
done