summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8e3e857..c62684e 100644
--- a/Makefile
+++ b/Makefile
@@ -40,9 +40,9 @@ clean:
dist: clean
git status --porcelain 2> /dev/null | grep -q "\S" && (git add .; git commit -m"neue Version: $(VERSION)") || true
- git tag -d v$(VERSION) && git push origin --delete v$(VERSION) || true
+ ! git tag -d v$(VERSION) 2> /dev/null
git tag v$(VERSION)
- git push --force
+ git push
git push --tags
# End of file