From 7cbb96ba85f135946676c15e0f32a867de32fbdb Mon Sep 17 00:00:00 2001 From: savitaashture Date: Wed, 11 Sep 2024 20:00:48 +0530 Subject: [PATCH] Revert "Add force flag to git tag and push command" This reverts commit d7ed223bdd7e6fa87dab470045928c10262dab73. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 045acb1..d42c92e 100644 --- a/Makefile +++ b/Makefile @@ -82,8 +82,8 @@ release: ${CATALOGCD} prepare-release # tags the repository with the RELEASE_VERSION and pushes to "origin" git-tag-release-version: if ! git rev-list "${RELEASE_VERSION}".. >/dev/null; then \ - git tag -f "$(RELEASE_VERSION)" && \ - git push origin --tags -f; \ + git tag "$(RELEASE_VERSION)" && \ + git push origin --tags; \ fi # github-release