From b831df8f7fc2f5b89ec998266901ac491d52a7fc Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Fri, 27 Oct 2017 11:59:33 -0700 Subject: [PATCH] Vagrantfile: Do "set +x" a bit before the end. This helps avoid the confusing situation we'd had where the very last line of the Vagrant output would be something in red. --- Vagrantfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 4e2a96dd67..3e8a576e27 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -120,6 +120,10 @@ fi # shell warning (it'll be wrong, since the shell is dying anyway) export SKIP_VENV_SHELL_WARNING=1 +# End `set -x`, so that the end of provision doesn't look like an error +# message after a successful run. +set +x + # Provision the development environment ln -nsf /srv/zulip ~/zulip /srv/zulip/tools/provision