Return-Path: X-Original-To: apmail-couchdb-dev-archive@www.apache.org Delivered-To: apmail-couchdb-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id CA797F20C for ; Wed, 3 Apr 2013 18:23:57 +0000 (UTC) Received: (qmail 7060 invoked by uid 500); 3 Apr 2013 18:23:57 -0000 Delivered-To: apmail-couchdb-dev-archive@couchdb.apache.org Received: (qmail 7032 invoked by uid 500); 3 Apr 2013 18:23:57 -0000 Mailing-List: contact dev-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list dev@couchdb.apache.org Received: (qmail 7007 invoked by uid 99); 3 Apr 2013 18:23:56 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Apr 2013 18:23:56 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 7579D836F7A; Wed, 3 Apr 2013 18:23:56 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: nslater@apache.org To: dev@couchdb.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: Change to the proper directory Date: Wed, 3 Apr 2013 18:23:56 +0000 (UTC) Updated Branches: refs/heads/master 3f38827de -> 6c4f71d5f Change to the proper directory Project: http://git-wip-us.apache.org/repos/asf/couchdb-admin/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-admin/commit/6c4f71d5 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-admin/tree/6c4f71d5 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-admin/diff/6c4f71d5 Branch: refs/heads/master Commit: 6c4f71d5f53e0c043fe8a6940725138bce81e22a Parents: 3f38827 Author: Noah Slater Authored: Wed Apr 3 19:23:47 2013 +0100 Committer: Noah Slater Committed: Wed Apr 3 19:23:47 2013 +0100 ---------------------------------------------------------------------- release/tag_candidate.sh | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-admin/blob/6c4f71d5/release/tag_candidate.sh ---------------------------------------------------------------------- diff --git a/release/tag_candidate.sh b/release/tag_candidate.sh index 297b6c8..0bfbf08 100755 --- a/release/tag_candidate.sh +++ b/release/tag_candidate.sh @@ -92,9 +92,11 @@ release: echo "Release dist directory: \$(VERSION_RELEASE_URL)" tag: \$(GIT_DIR) - git tag -u \$(GPG_KEY) \$(VERSION) \ + cd \$(GIT_DIR) && \ + git tag -u \$(GPG_KEY) \$(VERSION) \ \`cat \$(ISH_FILE)\` -m \$(COMMIT_MSG_TAG) - git push origin \$(VERSION) + cd \$(GIT_DIR) && \ + git push origin \$(VERSION) \$(GIT_DIR): check git clone \$(GIR_URL) \$@