Skip to content

Commit

Permalink
Fix ganache-cli.sh on Ubuntu
Browse files Browse the repository at this point in the history
I was getting:

```
./node_modules/@aragon/test-helpers/ganache-cli.sh: 4: set: Illegal option -o pipefail
```

Is it supposed to work with it?
  • Loading branch information
kernelwhisperer authored Apr 26, 2019
1 parent 01d80a0 commit de6ad5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/test-helpers/ganache-cli.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit de6ad5e

Please sign in to comment.