From 6e6322bdb9b25fcc56401094e3d5b829d60d1155 Mon Sep 17 00:00:00 2001 From: Chris Long Date: Mon, 2 Jul 2018 21:20:36 -0700 Subject: [PATCH] Fixing io redirection in reload_host() function --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index dbf2e8d..dac8d45 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 1>&2 + $(which vagrant) reload "$HOST" --provision &>> "$DL_DIR/Vagrant/vagrant_up_$HOST.log" echo "$?" }