Fix remote repo pull step in makefile

This commit is contained in:
Ruslan Bakiev
2026-02-13 17:19:40 +07:00
parent 0d4b5eb6c6
commit 80d0b0881c

View File

@@ -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)"