We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8903286 commit 2b44dd7Copy full SHA for 2b44dd7
.clusterfuzzlite/build.sh
@@ -74,16 +74,16 @@ do
74
echo "Copying for $module";
75
cp $f $OUT/
76
if [ -e "$corpus_dir" ]; then
77
- find "$corpus_dir" -mindepth 1 -maxdepth 1 | zip -@ -j $OUT/"$name"_seed_corpus.zip
+ find "$corpus_dir" -mindepth 1 -maxdepth 1 | zip -@ -j --quiet $OUT/"$name"_seed_corpus.zip
78
fi
79
80
dict_path="corpus/$name.dict"
81
if [ -e "$dict_path" ]; then
82
- zip -urj $OUT/"$name"_seed_corpus.zip $dict_path
+ zip -urj $OUT/"$name"_seed_corpus.zip "$dict_path"
83
84
85
options_path="corpus/$name.options"
86
if [ -e "$options_path" ]; then
87
- zip -urj $OUT/"$name"_seed_corpus.zip $options_path
+ zip -urj $OUT/"$name"_seed_corpus.zip "$options_path"
88
89
done
0 commit comments