test.sh: explicitly return 0

As per UNIX convention a Bash script should exit with status code 0 if
it completes successfully.
This commit is contained in:
Tobin Harding 2022-03-17 10:30:36 +11:00
parent 58db1b6753
commit 7bec31c3a6
1 changed files with 1 additions and 0 deletions

View File

@ -94,3 +94,4 @@ if [ "$DO_BENCH" = true ]; then
cargo bench --all --features="unstable"
fi
exit 0