From 9355480a8d82e19ebf6ede9188e433927b583c43 Mon Sep 17 00:00:00 2001 From: Chris Long Date: Mon, 2 Jul 2018 12:12:47 -0700 Subject: [PATCH] Update build.sh Fix some of the output redirection that was messing up return codes --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 01dd143..dbf2e8d 100755 --- a/build.sh +++ b/build.sh @@ -233,7 +233,7 @@ vagrant_up_host() { HOST="$1" (echo >&2 "Attempting to bring up the $HOST host using Vagrant") cd "$DL_DIR"/Vagrant || exit 1 - $(which vagrant) up "$HOST" --provider="$PROVIDER" 2> "$DL_DIR/Vagrant/vagrant_up_$HOST.log" + $(which vagrant) up "$HOST" --provider="$PROVIDER" &> "$DL_DIR/Vagrant/vagrant_up_$HOST.log" echo "$?" }