You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by sn...@apache.org on 2015/07/15 18:06:45 UTC

[3/5] incubator-usergrid git commit: Debugging release script

Debugging release script


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

Branch: refs/heads/1.0.2
Commit: 904a0a1c351219672476bc3b035387a1db015e02
Parents: a8b5354
Author: Dave Johnson <sn...@gmail.com>
Authored: Wed Jul 15 11:51:40 2015 -0400
Committer: Dave Johnson <sn...@gmail.com>
Committed: Wed Jul 15 11:51:40 2015 -0400

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


http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/904a0a1c/release/release.sh
----------------------------------------------------------------------
diff --git a/release/release.sh b/release/release.sh
index eb1a808..b34bbc6 100755
--- a/release/release.sh
+++ b/release/release.sh
@@ -126,10 +126,9 @@ fi
 # Create a branch for the release and update the .usergridversion and tag it
 echo "Creating release branch and tag for ${current_version}"
 git checkout -b $current_version
-echo $current_version > .usergridversion
-git add .usergridversion
-git commit -m "Updating .usergridversion to ${current_version}."
-
+#echo $current_version > .usergridversion
+#git add .usergridversion
+#git commit -m "Updating .usergridversion to ${current_version}."
 git tag -s "${current_version}" -m "usergrid-${current_version} release." $current_version
 
 echo "Push origin"