You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bm...@apache.org on 2013/06/11 02:15:40 UTC

git commit: Updated release tag format in the release script to use the new 0.12.0-rc1 style formatting.

Updated Branches:
  refs/heads/master 4ce4f2dc6 -> e43c46eef


Updated release tag format in the release script to use the new
0.12.0-rc1 style formatting.

Review: https://reviews.apache.org/r/11786


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

Branch: refs/heads/master
Commit: e43c46eef6b1c61dca3d9f589a14976eb7de031e
Parents: 4ce4f2d
Author: Benjamin Mahler <bm...@twitter.com>
Authored: Mon Jun 10 14:47:52 2013 -0700
Committer: Benjamin Mahler <bm...@twitter.com>
Committed: Mon Jun 10 17:15:28 2013 -0700

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


http://git-wip-us.apache.org/repos/asf/incubator-mesos/blob/e43c46ee/support/release.sh
----------------------------------------------------------------------
diff --git a/support/release.sh b/support/release.sh
index ef651a2..6d1b5c8 100755
--- a/support/release.sh
+++ b/support/release.sh
@@ -58,8 +58,8 @@ echo "${GREEN}Now let's make the artifacts world readable ...${NORMAL}"
 
 echo "${GREEN}Now we'll create a git tag ...${NORMAL}"
 
-MESSAGE="Tag for release-${VERSION}-incubating-RC${CANDIDATE}."
-TAG="release-${VERSION}-incubating-RC${CANDIDATE}"
+MESSAGE="Tag for ${VERSION}-rc${CANDIDATE}."
+TAG="${VERSION}-rc${CANDIDATE}"
 git tag -m "${MESSAGE}" ${TAG} || \
   { echo "${RED}Failed to create git tag${NORMAL}"; exit 1; }