From 7bec31c3a6eb43068f0b28db5f351b079751b2e2 Mon Sep 17 00:00:00 2001 From: Tobin Harding Date: Thu, 17 Mar 2022 10:30:36 +1100 Subject: [PATCH] test.sh: explicitly return 0 As per UNIX convention a Bash script should exit with status code 0 if it completes successfully. --- contrib/test.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/test.sh b/contrib/test.sh index a892a78..413115b 100755 --- a/contrib/test.sh +++ b/contrib/test.sh @@ -94,3 +94,4 @@ if [ "$DO_BENCH" = true ]; then cargo bench --all --features="unstable" fi +exit 0