Skip to content

Commit

Permalink
scripts/vagrant-setup-env.sh: set -o pipefail
Browse files Browse the repository at this point in the history
So if some opeartion fails, we don't ignore it.

Signed-off-by: Mateusz Gozdek <mateusz@kinvolk.io>
  • Loading branch information
invidian committed May 23, 2019
1 parent 663e00b commit 134eaed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/vagrant-setup-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ echo 'Writing build.sh'
if [[ ! -f $HOME/build.sh ]]; then
cat >>"$HOME/build.sh" <<-EOF
#!/bin/bash
set -xe
set -xeo pipefail
export PATH=$PATH:/usr/lib/go-1.11/bin
Expand Down

0 comments on commit 134eaed

Please sign in to comment.