no clippy for fuzzers/

This commit is contained in:
Andrea Fioraldi 2021-05-20 13:54:39 +02:00 committed by Omree
parent e719e85aba
commit b999f45caa

View File

@ -8,10 +8,10 @@ cd fuzzers
for fuzzer in *; for fuzzer in *;
do do
echo "[+] Checking fmt and building $fuzzer" echo "[+] Checking fmt, and building $fuzzer"
cd $fuzzer \ cd $fuzzer \
&& cargo fmt --all -- --check \ && cargo fmt --all -- --check \
&& cargo clippy \ # && ../../clippy.sh --no-clean \ # No clippy for example fuzzers
&& cargo build \ && cargo build \
&& cd .. \ && cd .. \
|| exit 1 || exit 1