Unverified Commit d7504ea5 authored by Michael Müller's avatar Michael Müller Committed by GitHub
Browse files

Replace `let` with `$(( ))` (#572)

parent 1d086a3a
Pipeline #113634 passed with stages
in 29 minutes and 9 seconds
......@@ -322,7 +322,7 @@ fuzz-tests:
if grep "ink-fuzz-tests =" crates/${crate}/Cargo.toml;
then
cargo test --verbose --features ink-fuzz-tests --manifest-path crates/${crate}/Cargo.toml --no-fail-fast -- fuzz_;
let "all_tests_passed |= $?";
all_tests_passed=$(( all_tests_passed | $? ));
fi
done
- if [ $all_tests_passed -eq 0 ]; then exit 0; fi
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment