From 792c09070151373a794e40f6145a634864b042a2 Mon Sep 17 00:00:00 2001 From: Alex Arslan Date: Sun, 21 Aug 2016 17:27:05 -0700 Subject: [PATCH] Add set -e just in case things go horribly wrong [ci skip] --- contrib/circle_balanceload.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/circle_balanceload.sh b/contrib/circle_balanceload.sh index f1b5f38f2ff3b0..067e04b8747982 100755 --- a/contrib/circle_balanceload.sh +++ b/contrib/circle_balanceload.sh @@ -1,6 +1,8 @@ #!/bin/bash # Balance the testing load between 2 CircleCI parallel containers +set -e + tests=($(/tmp/julia/bin/julia -e 'include("choosetests.jl"); t = choosetests(["all"])[1]; print(join(t, " "))')) # Command to run tests -- append names for specific tests