From de6ad5e87d38d278fcd4063ed3f7ce5defd06a1e Mon Sep 17 00:00:00 2001 From: Daniel Constantin Date: Fri, 26 Apr 2019 15:47:11 +0300 Subject: [PATCH] Fix ganache-cli.sh on Ubuntu I was getting: ``` ./node_modules/@aragon/test-helpers/ganache-cli.sh: 4: set: Illegal option -o pipefail ``` Is it supposed to work with it? --- shared/test-helpers/ganache-cli.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/test-helpers/ganache-cli.sh b/shared/test-helpers/ganache-cli.sh index 6a15e0d886..a58b3fc414 100755 --- a/shared/test-helpers/ganache-cli.sh +++ b/shared/test-helpers/ganache-cli.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # Exit script as soon as a command fails. -set -o errexit -o pipefail +set -o errexit # Executes cleanup function at script exit. trap cleanup EXIT