You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@couchdb.apache.org by ns...@apache.org on 2013/04/03 20:23:56 UTC

git commit: Change to the proper directory

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 <ns...@apache.org>
Authored: Wed Apr 3 19:23:47 2013 +0100
Committer: Noah Slater <ns...@apache.org>
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) \$@