diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -36,7 +36,7 @@ all: hardlinkedbackups.8 backup lastBackups install: all install -D -m0755 -t $(DESTDIR)$(BINDIR) backup lastBackups install -D -m0644 -t $(DESTDIR)$(MANDIR)/man8 hardlinkedbackups.8 - ln -S $(DESTDIR)$(MANDIR)/man8/{hardlinkedbackups,backups,lastBackups}.8 + ln -s $(DESTDIR)$(MANDIR)/man8/{hardlinkedbackups,backups,lastBackups}.8 install -D -m0644 -t $(DESTDIR)$(ETCDIR)/backup.conf clean: @@ -44,9 +44,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 |