You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by js...@apache.org on 2016/02/08 23:55:25 UTC

aurora git commit: Fixup release script to tag HEAD of the release branch.

Repository: aurora
Updated Branches:
  refs/heads/master a34f38b7b -> 2ddf01472


Fixup release script to tag HEAD of the release branch.

Previously it tried to tag the non-existant rel/[version].

Bugs closed: AURORA-1558

Reviewed at https://reviews.apache.org/r/43342/


Project: http://git-wip-us.apache.org/repos/asf/aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/2ddf0147
Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/2ddf0147
Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/2ddf0147

Branch: refs/heads/master
Commit: 2ddf0147297a2c769ea8e69931ca494cc5742ba5
Parents: a34f38b
Author: John Sirois <js...@apache.org>
Authored: Mon Feb 8 15:55:23 2016 -0700
Committer: John Sirois <js...@apache.org>
Committed: Mon Feb 8 15:55:23 2016 -0700

----------------------------------------------------------------------
 build-support/release/release | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/aurora/blob/2ddf0147/build-support/release/release
----------------------------------------------------------------------
diff --git a/build-support/release/release b/build-support/release/release
index c3961f0..cb3b03e 100755
--- a/build-support/release/release
+++ b/build-support/release/release
@@ -136,7 +136,7 @@ if [[ $publish == 1 ]]; then
   git add .auroraversion
   git commit -m "Updating .auroraversion to release version ${current_version}."
   git tag -s "${current_version_tag}" \
-    -m "Apache Aurora ${current_version} release" ${current_version_tag}
+    -m "Apache Aurora ${current_version} release" HEAD
   git push origin "${current_version_tag}"
 fi