From 8058a7fd2b0c2a7205466657bd04ce069cb38e18 Mon Sep 17 00:00:00 2001 From: "dslomov@chromium.org" Date: Tue, 3 Dec 2013 14:30:36 +0000 Subject: [PATCH] Fix condition in merge-to-branch.sh R=yangguo@chromium.org Review URL: https://codereview.chromium.org/101973002 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@18237 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- tools/merge-to-branch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/merge-to-branch.sh b/tools/merge-to-branch.sh index 0314cb4..7b9d3b4 100755 --- a/tools/merge-to-branch.sh +++ b/tools/merge-to-branch.sh @@ -118,7 +118,7 @@ if [ $START_STEP -le $CURRENT_STEP ] ; then fi fi echo ">>> Step $CURRENT_STEP: Preparation" - if [ $REVERT_FROM_BLEEDING_EDGE==1 ] ; then + if [ $REVERT_FROM_BLEEDING_EDGE -eq 1 ] ; then MERGE_TO_BRANCH="bleeding_edge" else MERGE_TO_BRANCH=$1 -- 2.7.4