Repository: zeppelin
Updated Branches:
  refs/heads/master a105a21a9 -> 1f7366479


[HOTFIX] Fix wrong variable name in tag script

### What is this PR for?
Fix wrong variable name in tag script

### What type of PR is it?
Hot Fix

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: Mina Lee <mina...@apache.org>

Closes #2171 from minahlee/hotfix/tag-script and squashes the following commits:

d84a72c1 [Mina Lee] FIx tag script wrong variable nome


Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo
Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/1f736647
Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/1f736647
Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/1f736647

Branch: refs/heads/master
Commit: 1f736647989952679957c8a7bd26b156d795fd7c
Parents: a105a21
Author: Mina Lee <mina...@apache.org>
Authored: Tue Mar 21 20:02:51 2017 +0900
Committer: Mina Lee <mina...@apache.org>
Committed: Tue Mar 21 20:06:02 2017 +0900

----------------------------------------------------------------------
 dev/tag_release.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/1f736647/dev/tag_release.sh
----------------------------------------------------------------------
diff --git a/dev/tag_release.sh b/dev/tag_release.sh
index 849237d..14096ae 100755
--- a/dev/tag_release.sh
+++ b/dev/tag_release.sh
@@ -44,7 +44,7 @@ git tag "${RC_TAG}"
 git commit -a -m "Preparing development version ${NEXT_DEV_VERSION}"
 
 git push origin "${RC_TAG}"
-git push origin HEAD:"${BRANCH}" 
+git push origin HEAD:"${GIT_BRANCH}" 
 
 popd
 rm -rf "${WORKING_DIR}"

Reply via email to