aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/example
diff options
context:
space:
mode:
authorGravatar Kostya Serebryany <konstantin.s.serebryany@gmail.com>2017-05-15 18:00:35 -0700
committerGravatar GitHub <noreply@github.com>2017-05-15 18:00:35 -0700
commit90fab0f099b30c3f7ae4fde772f89998d5316349 (patch)
treecbf9da6efe582474de43a643dff23ce981039983 /projects/example
parent9b6ba4dc148c38e85c3f71d8d468d92b28f9e353 (diff)
Update build.sh
Diffstat (limited to 'projects/example')
-rwxr-xr-xprojects/example/build.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/projects/example/build.sh b/projects/example/build.sh
index b65afc97..487ff1bd 100755
--- a/projects/example/build.sh
+++ b/projects/example/build.sh
@@ -22,6 +22,6 @@ make -j$(nproc) check # Sanity check, not strictly required, but nice to have.
# Copy the fuzzer executables, zip-ed corpora, option and dictionary files to $OUT
find . -name '*_fuzzer' -exec cp -v '{}' $OUT ';'
-find . -name '*_fuzzer.dict' -exec cp -v '{}' $OUT ';'
-find . -name '*_fuzzer.options' -exec cp -v '{}' $OUT ';'
-find . -name '*_fuzzer_seed_corpus.zip' -exec cp -v '{}' $OUT ';'
+find . -name '*_fuzzer.dict' -exec cp -v '{}' $OUT ';' # If you have dictionaries.
+find . -name '*_fuzzer.options' -exec cp -v '{}' $OUT ';' # If you have custom options.
+find . -name '*_fuzzer_seed_corpus.zip' -exec cp -v '{}' $OUT ';' # If you have seed corpora (you better have them!)