Makefile: Remove dash from git commands

I.e. "git tag" instead of "git-tag".
This commit is contained in:
Bastien Guerry 2011-07-07 13:43:25 +02:00
parent c9b49c05a6
commit 6a76a485a0
1 changed files with 5 additions and 5 deletions

View File

@ -443,15 +443,15 @@ cleanrel:
push:
git-push orgmode@orgmode.org:org-mode.git master
git push orgmode@orgmode.org:org-mode.git master
pushtag:
git-tag -m "Adding tag" -a $(TAG)
git-push orgmode@orgmode.org:org-mode.git $(TAG)
git tag -m "Adding tag" -a $(TAG)
git push orgmode@orgmode.org:org-mode.git $(TAG)
pushreleasetag:
git-tag -m "Adding release tag" -a release_$(TAG)
git-push orgmode@orgmode.org:org-mode.git release_$(TAG)
git tag -m "Adding release tag" -a release_$(TAG)
git push orgmode@orgmode.org:org-mode.git release_$(TAG)
# Dependencies