From fa070937c2d2155caca36aa8503c246d5d539b15 Mon Sep 17 00:00:00 2001 From: Andreas Neue Date: Mon, 4 Jul 2022 17:52:28 +0200 Subject: [PATCH] get rid of .sh file ext (pre-deploy, post-deploy) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index afadbe0..fafcda8 100644 --- a/Makefile +++ b/Makefile @@ -28,14 +28,14 @@ pre-deploy-docker: @- echo "\n### running pre-deploy script" @- $(foreach host,$(DEPLOY_HOSTS), \ cd $(DEPLOY_PATH)/$(DEPLOY_NAME); \ - sh pre-deploy.sh; \ + sh pre-deploy; \ ) post-deploy-docker: @- echo "\n### running post-deploy script" @- $(foreach host,$(DEPLOY_HOSTS), \ cd $(DEPLOY_PATH)/$(DEPLOY_NAME); \ - sh post-deploy.sh; \ + sh post-deploy; \ ) upload: