mirror of https://github.com/zulip/zulip.git
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.
This commit is contained in:
parent
a9d1042718
commit
b831df8f7f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue