Repository: flink Updated Branches: refs/heads/master 983fdedcf -> 92627b642
[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/92627b64 Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/92627b64 Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/92627b64 Branch: refs/heads/master Commit: 92627b642847888fbe74589855fb84a354dd82d8 Parents: 983fded Author: Aljoscha Krettek <[email protected]> Authored: Mon Nov 20 16:32:06 2017 +0100 Committer: Aljoscha Krettek <[email protected]> Committed: Mon Nov 20 16:33:07 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/92627b64/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
