aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2019-06-10 18:29:47 -0300
committerEuAndreh <eu@euandre.org>2019-06-10 18:29:47 -0300
commiteaaf4d88e99e902b6205cef38866da4f768f9f7e (patch)
tree45e451cf16a2c1b192c325ef5de1b433cbb64139
parentTrust commited key (diff)
downloadtoph-eaaf4d88e99e902b6205cef38866da4f768f9f7e.tar.gz
toph-eaaf4d88e99e902b6205cef38866da4f768f9f7e.tar.xz
Fix missing stdout redirection '>' character
-rwxr-xr-xscripts/ci/provision.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ci/provision.sh b/scripts/ci/provision.sh
index a17d7cc..0ebdcb0 100755
--- a/scripts/ci/provision.sh
+++ b/scripts/ci/provision.sh
@@ -48,7 +48,7 @@ echo "Done."
if [[ "${DESTROY_VOLUME:-}" != "" ]]; then
echo "Destroying existing infrastructure..."
- terraform destroy -input=false -auto-approve ./logs/terraform-destroy.txt 2>&1
+ terraform destroy -input=false -auto-approve > ./logs/terraform-destroy.txt 2>&1
else
echo "Skipping explicit intentional destruction of existing infrastructure..."
fi