From efcdaf6f96908fde5e768bf6240e470fd0ee9060 Mon Sep 17 00:00:00 2001 From: Andreas Neue Date: Thu, 24 Nov 2022 13:58:07 +0100 Subject: [PATCH] fix missing ; --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c63e2a8..dc1b4aa 100644 --- a/Makefile +++ b/Makefile @@ -72,5 +72,5 @@ restart: restart-$(DEPLOY_TYPE) reload: @- $(foreach host,$(DEPLOY_HOSTS), \ echo "### reloading service on $(host)"; \ - ssh $(SSH_USER)@$(host) "cd $(DEPLOY_PATH)/$(DEPLOY_NAME); ./reload.sh; \ + ssh $(SSH_USER)@$(host) "cd $(DEPLOY_PATH)/$(DEPLOY_NAME); ./reload.sh"; \ )