From 653c11d580dcacd930f3657c80c9f626170abdef Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 20 Apr 2018 11:11:38 -0700 Subject: [PATCH] Use "set -euo pipefail" in test-no_std.sh. This makes it consistent with other shell scripts in the repo. --- cranelift/test-no_std.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cranelift/test-no_std.sh b/cranelift/test-no_std.sh index 66a629eb57..7d372f3558 100755 --- a/cranelift/test-no_std.sh +++ b/cranelift/test-no_std.sh @@ -1,11 +1,9 @@ #!/bin/bash +set -euo pipefail # This is the test script for testing the no_std configuration of # packages which support it. -# Exit immediately on errors. -set -e - # Repository top-level directory. cd $(dirname "$0") topdir=$(pwd)