You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2013/05/24 23:00:25 UTC

[2/2] git commit: Fixed a bug in the release script regarding tag creation.

Fixed a bug in the release script regarding tag creation.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mesos/commit/4b9fb67c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mesos/tree/4b9fb67c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mesos/diff/4b9fb67c

Branch: refs/heads/master
Commit: 4b9fb67c458b9825784a4c85455c81a613ae02f0
Parents: 124d63a
Author: Vinod Kone <vi...@twitter.com>
Authored: Fri May 24 13:59:32 2013 -0700
Committer: Vinod Kone <vi...@twitter.com>
Committed: Fri May 24 13:59:32 2013 -0700

----------------------------------------------------------------------
 support/release.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mesos/blob/4b9fb67c/support/release.sh
----------------------------------------------------------------------
diff --git a/support/release.sh b/support/release.sh
index 6ec568b..ef651a2 100755
--- a/support/release.sh
+++ b/support/release.sh
@@ -60,7 +60,7 @@ echo "${GREEN}Now we'll create a git tag ...${NORMAL}"
 
 MESSAGE="Tag for release-${VERSION}-incubating-RC${CANDIDATE}."
 TAG="release-${VERSION}-incubating-RC${CANDIDATE}"
-git tag -m ${MESSAGE} ${TAG} || \
+git tag -m "${MESSAGE}" ${TAG} || \
   { echo "${RED}Failed to create git tag${NORMAL}"; exit 1; }
 
 echo "${GREEN}Finally, we'll push the git tag to the repository...${NORMAL}"