From 8f0e794893f9f3363ab6ccc1ad0a80cf871073f2 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 24 Nov 2014 00:52:58 -0500 Subject: [PATCH] Remove extra dash --- plugins/nginx-vhosts/post-deploy | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/plugins/nginx-vhosts/post-deploy b/plugins/nginx-vhosts/post-deploy index e16fc1e80..18c8c20a6 100755 --- a/plugins/nginx-vhosts/post-deploy +++ b/plugins/nginx-vhosts/post-deploy @@ -116,13 +116,14 @@ EOF restart_nginx else if [[ -f "$DOKKU_ROOT/$APP/URL" ]]; then - echo "------> NO_VHOST set, deleting $APP/URL" + echo "-----> NO_VHOST set, deleting $APP/URL" rm "$DOKKU_ROOT/$APP/URL" fi if [[ -f "$DOKKU_ROOT/$APP/nginx.conf" ]]; then - echo "------> NO_VHOST set, deleting $APP/nginx.conf" + echo "-----> NO_VHOST set, deleting nginx.conf" rm "$DOKKU_ROOT/$APP/nginx.conf" - echo "------> NO_VHOST set, reloading nginx after nginx.conf deletion" + + echo "-----> NO_VHOST set, reloading nginx after nginx.conf deletion" restart_nginx fi fi