From d3adc84e13d8d202d811c7024d2b5e9d9ff6627b Mon Sep 17 00:00:00 2001 From: Chris Long Date: Tue, 3 Jul 2018 09:12:58 -0700 Subject: [PATCH] Update build.sh Correcting the non-existent operator that I made up --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index dac8d45..237146e 100755 --- a/build.sh +++ b/build.sh @@ -242,7 +242,7 @@ vagrant_reload_host() { HOST="$1" cd "$DL_DIR"/Vagrant || exit 1 # Attempt to reload the host if the vagrant up command didn't exit cleanly - $(which vagrant) reload "$HOST" --provision &>> "$DL_DIR/Vagrant/vagrant_up_$HOST.log" + $(which vagrant) reload "$HOST" --provision >>"$DL_DIR/Vagrant/vagrant_up_$HOST.log" 2>&1 echo "$?" }