mirror of https://github.com/google/oss-fuzz.git
openssl: Don't find sh scripts in fuzz directory (#7925)
As part of https://github.com/openssl/openssl/pull/18355 "Add Reproducible Error Injection" I want to add an executable testrun.sh script to the fuzz directory. Ideally I would like to set the executable bit on that file, but unfortunately this confuses the CIFuzz build. This excludes *.sh from the find command in build.sh
This commit is contained in:
parent
99f411f3dc
commit
50ae970c9a
|
@ -25,7 +25,7 @@ fi
|
|||
|
||||
make -j$(nproc) LDCMD="$CXX $CXXFLAGS"
|
||||
|
||||
fuzzers=$(find fuzz -executable -type f '!' -name \*.py '!' -name \*-test '!' -name \*.pl)
|
||||
fuzzers=$(find fuzz -executable -type f '!' -name \*.py '!' -name \*-test '!' -name \*.pl '!' -name \*.sh)
|
||||
for f in $fuzzers; do
|
||||
fuzzer=$(basename $f)
|
||||
cp $f $OUT/
|
||||
|
|
Loading…
Reference in New Issue