From 80d0b0881c35c41cda209ef349b2faa9366f5666 Mon Sep 17 00:00:00 2001 From: Ruslan Bakiev <572431+veikab@users.noreply.github.com> Date: Fri, 13 Feb 2026 17:19:40 +0700 Subject: [PATCH] Fix remote repo pull step in makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cf7ec2d..c572538 100644 --- a/Makefile +++ b/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)"