From a7d341bc15afec0ebec6b34a574e13938d75863d Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Thu, 5 Aug 2021 11:51:38 +1000 Subject: [PATCH] Fix bash syntax --- scripts/local_testnet/setup.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/local_testnet/setup.sh b/scripts/local_testnet/setup.sh index 7009df51c14..f5a3e6464dc 100755 --- a/scripts/local_testnet/setup.sh +++ b/scripts/local_testnet/setup.sh @@ -9,7 +9,9 @@ # $VALIDATOR_COUNT and $NODE_COUNT variables. # -set -o nounset errexit pipefail +set -o nounset +set -o errexit +set -o pipefail source ./vars.env