From a9d104271844bf13884c7f3f71117f60e6ed4a6e Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Fri, 27 Oct 2017 11:58:25 -0700 Subject: [PATCH] Vagrantfile: Fix some incorrect indentation in shell script. --- Vagrantfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index fd481cff38..4e2a96dd67 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -108,7 +108,7 @@ set -o pipefail # If the host is running SELinux remount the /sys/fs/selinux directory as read only, # needed for apt-get to work. if [ -d "/sys/fs/selinux" ]; then - sudo mount -o remount,ro /sys/fs/selinux + sudo mount -o remount,ro /sys/fs/selinux fi # Set default locale, this prevents errors if the user has another locale set. @@ -126,8 +126,8 @@ ln -nsf /srv/zulip ~/zulip # Run any custom provision hooks the user has configured if [ -f /srv/zulip/tools/custom_provision ]; then - chmod +x /srv/zulip/tools/custom_provision - /srv/zulip/tools/custom_provision + chmod +x /srv/zulip/tools/custom_provision + /srv/zulip/tools/custom_provision fi SCRIPT