get rid of .sh file ext (pre-deploy, post-deploy)

This commit is contained in:
Andreas Neue 2022-07-04 17:52:28 +02:00
parent 1189d27163
commit fa070937c2
1 changed files with 2 additions and 2 deletions

View File

@ -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: