summaryrefslogtreecommitdiffstats
path: root/tools/bisect_utils.py
diff options
context:
space:
mode:
authortonyg@chromium.org <tonyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-30 16:50:03 +0000
committertonyg@chromium.org <tonyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-30 16:50:03 +0000
commit99ad540680a2888133ccd4bafc334cdc5d952bd4 (patch)
tree3200f97bc2894aaf43360c9c216cd4d9108bd2d0 /tools/bisect_utils.py
parent96f49a40e7e15340de2f6a585a376b4ad28c2a69 (diff)
downloadchromium_src-99ad540680a2888133ccd4bafc334cdc5d952bd4.zip
chromium_src-99ad540680a2888133ccd4bafc334cdc5d952bd4.tar.gz
chromium_src-99ad540680a2888133ccd4bafc334cdc5d952bd4.tar.bz2
[Bisect] Fix creation of initial checkout.
We don't care whether gclient revert succeeds. BUG= NOTRY=True R=simonhatch@chromium.org Review URL: https://codereview.chromium.org/21158002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@214367 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/bisect_utils.py')
-rw-r--r--tools/bisect_utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/bisect_utils.py b/tools/bisect_utils.py
index e6f45c4..05a7562 100644
--- a/tools/bisect_utils.py
+++ b/tools/bisect_utils.py
@@ -270,7 +270,8 @@ def SetupGitDepot(opts, reset):
os.chdir(cwd)
if passed_deps_check:
- if not RunGClient(['revert']) and not RunGClientAndSync(reset):
+ RunGClient(['revert'])
+ if not RunGClientAndSync(reset):
passed = True
if opts.output_buildbot_annotations: