Fix remote repo pull step in makefile
This commit is contained in:
2
Makefile
2
Makefile
@@ -47,7 +47,7 @@ preflight-check:
|
||||
|
||||
remote-repo-pull:
|
||||
@echo "Pulling latest repo on remote host: $(REMOTE_APP_PATH)"
|
||||
@docker run --rm -v "$(REMOTE_APP_PATH):/repo" alpine/git sh -lc "set -e; cd /repo && git fetch $(GIT_REMOTE) && git pull --ff-only $(GIT_REMOTE) $(GIT_BRANCH)"
|
||||
@docker run --rm --entrypoint /bin/sh -v "$(REMOTE_APP_PATH):/repo" alpine/git -lc "set -e; cd /repo && git fetch $(GIT_REMOTE) && git pull --ff-only $(GIT_REMOTE) $(GIT_BRANCH)"
|
||||
|
||||
sync-addons:
|
||||
@echo "Syncing addons to volume: $(REMOTE_ADDONS_DST)"
|
||||
|
||||
Reference in New Issue
Block a user