]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
tagscript: improve formatting of commits and tags
authorTravis Cross <tc@traviscross.com>
Mon, 7 May 2012 22:28:33 +0000 (22:28 +0000)
committerTravis Cross <tc@traviscross.com>
Mon, 7 May 2012 22:29:54 +0000 (22:29 +0000)
scripts/tagscript.sh

index 920d312d658d341cbfdefda6dfe8ac7a49a8f75a..30222641a646b7423ecb34ef828c6d1bc13c2e05 100755 (executable)
@@ -119,7 +119,7 @@ set_fs_ver "$gver" "$gmajor" "$gminor" "$gmicro" "$grev"
 
 echo "Committing the new version..." >&2
 git add configure.in
-if ! (git commit --allow-empty -m "release freeswitch-$gver"); then
+if ! (git commit --allow-empty -m "release FreeSWITCH $gver"); then
   cat >&2 <<EOF
 Committing the new version failed for some reason.  Definitely look
 into this before proceeding.
@@ -129,7 +129,7 @@ EOF
 fi
 
 echo "Tagging freeswitch v$gver..." >&2
-if ! (git tag -a ${opts} -m "freeswitch-$gver release" "v$gver"); then
+if ! (git tag -a ${opts} -m "FreeSWITCH $gver" "v$gver"); then
   cat >&2 <<EOF
 Committing the new tag failed for some reason.  Maybe you didn't
 delete an old tag with this name?  Definitely figure out what's wrong