changeset 2975:84351e58c297

don't supply meaningless -m message to tag.
author hanwen <hanwen@lilypond.org>
date Thu, 14 Dec 2006 15:44:37 +0100
parents e1b1550e31f5
children 9ee8d2ff3b5a
files lilypondorg.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lilypondorg.py	Thu Dec 14 15:44:19 2006 +0100
+++ b/lilypondorg.py	Thu Dec 14 15:44:37 2006 +0100
@@ -163,7 +163,7 @@
     description = repo.git_pipe ('describe --abbrev=39 %(branch)s' % locals()).strip ()
     
     git_tag = 'release/%(version_str)s-%(build)d' % locals () 
-    git_tag_cmd = 'git --git-dir downloads/lilypond.git tag -a -m "build and upload" %(git_tag)s %(branch)s' % locals ()
+    git_tag_cmd = 'git --git-dir downloads/lilypond.git tag -a %(git_tag)s %(branch)s' % locals ()
     git_push_cmd = 'git --git-dir downloads/lilypond.git push ssh+git://git.sv.gnu.org/srv/git/lilypond.git/ refs/tags/%(git_tag)s:refs/tags/%(git_tag)s' % locals ()
     darcs_tag_cmd = 'darcs tag --patch "release %(version_str)s-%(build)d of lilypond %(description)s" ' % locals()