diff options
-rw-r--r-- | Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -22,7 +22,7 @@ DESTDIR = BINDIR = /usr/bin -VERSION = 0.9 +VERSION = 0.10 all: bash-git-prompt @@ -37,4 +37,11 @@ install: all clean: rm -f bash-git-prompt +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 v$(VERSION) + git push --force + git push --tags + # End of file |