Skip to content

Commit 2b44dd7

Browse files
committed
cfl: suppress output in a corpus compression
Suppress output in a corpus compression because this output makes logs huge and usually this output is not needed for debug.
1 parent 8903286 commit 2b44dd7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.clusterfuzzlite/build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,16 +74,16 @@ do
7474
echo "Copying for $module";
7575
cp $f $OUT/
7676
if [ -e "$corpus_dir" ]; then
77-
find "$corpus_dir" -mindepth 1 -maxdepth 1 | zip -@ -j $OUT/"$name"_seed_corpus.zip
77+
find "$corpus_dir" -mindepth 1 -maxdepth 1 | zip -@ -j --quiet $OUT/"$name"_seed_corpus.zip
7878
fi
7979

8080
dict_path="corpus/$name.dict"
8181
if [ -e "$dict_path" ]; then
82-
zip -urj $OUT/"$name"_seed_corpus.zip $dict_path
82+
zip -urj $OUT/"$name"_seed_corpus.zip "$dict_path"
8383
fi
8484

8585
options_path="corpus/$name.options"
8686
if [ -e "$options_path" ]; then
87-
zip -urj $OUT/"$name"_seed_corpus.zip $options_path
87+
zip -urj $OUT/"$name"_seed_corpus.zip "$options_path"
8888
fi
8989
done

0 commit comments

Comments
 (0)