From 88eb361a85abccdcf56fc821527d868f3782b5fa Mon Sep 17 00:00:00 2001 From: eti-codefresh Date: Tue, 3 Sep 2024 09:54:29 +0300 Subject: [PATCH] remove --prune --- start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.sh b/start.sh index b232aee..77e2c59 100644 --- a/start.sh +++ b/start.sh @@ -201,7 +201,7 @@ if [ -d "$CLONE_DIR" ]; then if [ -n "$SKIP_TAGS_ON_UPDATE" ]; then echo "Fetching updates from origin${DEPTH:+ with depth $DEPTH}, skipping tags" - git_retry git fetch origin ${REVISION:+$REVISION} --prune --no-tags ${DEPTH:+ --depth=$DEPTH} + git_retry git fetch origin ${REVISION:+$REVISION} --no-tags ${DEPTH:+ --depth=$DEPTH} else echo "Fetching updates from origin" git_retry git fetch origin --tags --prune "+refs/tags/*:refs/tags/*"