From 78f3cff151909ca5b858cd6fc31e7a8e209df833 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Sat, 5 May 2018 10:48:09 -0700 Subject: [PATCH] provision: Fix unescaped reference to vagrant. Previously, this would actually try to run `vagrant ssh`, rather than printing it :(. --- tools/provision | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/provision b/tools/provision index c5716859f9..9d0abebee9 100755 --- a/tools/provision +++ b/tools/provision @@ -46,7 +46,7 @@ elif [ "$VIRTUAL_ENV" != "/srv/zulip-py3-venv" ] && [ -z "${TRAVIS}${SKIP_VENV_S echo echo "To update the shell, run:" echo " source /srv/zulip-py3-venv/bin/activate" - echo "or just close this shell and start a new one (with Vagrant, `vagrant ssh`)." + echo 'or just close this shell and start a new one (with Vagrant, `vagrant ssh`).' echo -en "$ENDC" fi exit 0