Commit 8058a7fd authored by dslomov@chromium.org's avatar dslomov@chromium.org

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
parent 5e535ae6
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment