You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by al...@apache.org on 2017/11/20 15:32:59 UTC

flink git commit: [hotfix] Fix create_release_branch.sh to use correct branch name

Repository: flink
Updated Branches:
  refs/heads/release-1.4 3d4146c10 -> 314087e8d


[hotfix] Fix create_release_branch.sh to use correct branch name


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/314087e8
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/314087e8
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/314087e8

Branch: refs/heads/release-1.4
Commit: 314087e8d31b7965afa5445ad4a8d9c467d0b940
Parents: 3d4146c
Author: Aljoscha Krettek <al...@gmail.com>
Authored: Mon Nov 20 16:32:06 2017 +0100
Committer: Aljoscha Krettek <al...@gmail.com>
Committed: Mon Nov 20 16:32:06 2017 +0100

----------------------------------------------------------------------
 tools/releasing/create_release_branch.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/314087e8/tools/releasing/create_release_branch.sh
----------------------------------------------------------------------
diff --git a/tools/releasing/create_release_branch.sh b/tools/releasing/create_release_branch.sh
index c2bca88..84c2592 100755
--- a/tools/releasing/create_release_branch.sh
+++ b/tools/releasing/create_release_branch.sh
@@ -43,7 +43,7 @@ cd ..
 
 target_branch=release-$NEW_VERSION
 if [ "$RELEASE_CANDIDATE" != "none" ]; then
-  target_branch=$target_branch-$RELEASE_CANDIDATE
+  target_branch=$target_branch-rc$RELEASE_CANDIDATE
 fi
 
 git checkout -b $target_branch