From 9c2b1fb60f92a3d6ea6158cd566d752a3e45acd9 Mon Sep 17 00:00:00 2001 From: Andreas Neue Date: Wed, 10 May 2023 10:39:04 +0200 Subject: [PATCH] chmod secrets.mk --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 508bf0b..f38fe34 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ endif if test -z "${$(var)}"; then \ echo "Missing mandatory variable: $(var)"; \ exit 1; \ - fi; \ + fi; \ ) prerequisites: @@ -30,6 +30,7 @@ prerequisites: prepare: @- echo "\n### preparing ..." + @- chmod 600 secrets.mk @- $(foreach host,$(DEPLOY_HOSTS), \ ssh $(SSH_USER)@$(host) "cd $(DEPLOY_PATH); mkdir $(DEPLOY_NAME)"; \ )