From 5d2808c3011bead190a05c571ed8822eac50b44b Mon Sep 17 00:00:00 2001 From: Andreas Neue Date: Fri, 19 May 2023 09:28:14 +0200 Subject: [PATCH] apt.mk: missing brackets --- apt.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apt.mk b/apt.mk index 1baf543..7afe780 100644 --- a/apt.mk +++ b/apt.mk @@ -7,6 +7,6 @@ start-apt: @- echo "\n### start" @- $(foreach host,$(DEPLOY_HOSTS), \ echo "$(host)"; \ - ssh $(SSH_USER)@$(host) "sudo apt install -y $APT_PACKAGES; sh start.sh"; \ + ssh $(SSH_USER)@$(host) "sudo apt install -y $(APT_PACKAGES); sh start.sh"; \ sleep $(DEPLOY_START_DELAY); \ )