Return-Path: X-Original-To: apmail-aurora-commits-archive@minotaur.apache.org Delivered-To: apmail-aurora-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 99B3E18CC2 for ; Mon, 8 Feb 2016 22:55:25 +0000 (UTC) Received: (qmail 2143 invoked by uid 500); 8 Feb 2016 22:55:25 -0000 Delivered-To: apmail-aurora-commits-archive@aurora.apache.org Received: (qmail 2101 invoked by uid 500); 8 Feb 2016 22:55:25 -0000 Mailing-List: contact commits-help@aurora.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@aurora.apache.org Delivered-To: mailing list commits@aurora.apache.org Received: (qmail 2092 invoked by uid 99); 8 Feb 2016 22:55:25 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Feb 2016 22:55:25 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 0D9ACE00B2; Mon, 8 Feb 2016 22:55:25 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jsirois@apache.org To: commits@aurora.apache.org Message-Id: <1a447e7db95c48bf9cc721088075fac5@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: aurora git commit: Fixup release script to tag HEAD of the release branch. Date: Mon, 8 Feb 2016 22:55:25 +0000 (UTC) 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 Authored: Mon Feb 8 15:55:23 2016 -0700 Committer: John Sirois 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