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 2016/02/18 16:42:05 UTC

[3/3] usergrid git commit: Correct release directory for binary, correct tag for release.

Correct release directory for binary, correct tag for release.


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

Branch: refs/heads/2.1.0
Commit: 58c9a7b932071b72cacaf2663f2b6e416c96bcf0
Parents: 9c3c146
Author: Dave Johnson <sn...@apache.org>
Authored: Thu Feb 18 09:53:40 2016 -0500
Committer: Dave Johnson <sn...@apache.org>
Committed: Thu Feb 18 09:53:40 2016 -0500

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


http://git-wip-us.apache.org/repos/asf/usergrid/blob/58c9a7b9/release/release.sh
----------------------------------------------------------------------
diff --git a/release/release.sh b/release/release.sh
index 38ed413..7cfc5cd 100755
--- a/release/release.sh
+++ b/release/release.sh
@@ -155,7 +155,7 @@ git checkout -b $current_version
 
 # TODO: ensure that the tag has the same date as the last commit made
 
-git tag -s "${current_version}" -m "usergrid-${current_version} release." $current_version
+git tag -s "usergrid-${current_version}" -m "usergrid-${current_version} release." $current_version
 
 if [[ $publish == 1 ]]; then
   git push origin $current_version
@@ -193,7 +193,7 @@ binary_name="apache-usergrid-${current_version}-binary"
 
 pushd release
 ./binary-release.sh ${current_version}
-cp target/${binary_name}.tar.gz ${dist_dir}
+cp target/${binary_name}.tar.gz ${release_dir}
 popd