Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 148afe7

Browse files
committed
[[ Build ]] Fix tag pruning
1 parent 6a30920 commit 148afe7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

buildbot.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,9 @@ dist-tools-commercial:
182182
# Ensure that the version for which we're trying to build installers
183183
# hasn't already been tagged.
184184
dist-tools-version-check:
185-
@git tag -l | xargs git tag -d; \
186-
@git fetch --tags; \
187-
@if git rev-parse refs/tags/$(BUILD_SHORT_VERSION) \
185+
@git tag -l | xargs git tag -d ;\
186+
git fetch --tags ;\
187+
if git rev-parse refs/tags/$(BUILD_SHORT_VERSION) \
188188
>/dev/null 2>&1 ; then \
189189
echo; \
190190
echo "$(BUILD_SHORT_VERSION) has already been released."; \

0 commit comments

Comments
 (0)