Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Unified Diff: tools/prepare-bisect-perf-regression.py

Issue 23447006: Skip the creation/sync step on the bot. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/bisect_utils.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/prepare-bisect-perf-regression.py
diff --git a/tools/prepare-bisect-perf-regression.py b/tools/prepare-bisect-perf-regression.py
index efcafc26e070351d48d483e410608345cfba1fd1..c12edbd4884498a3deb7f346eb4fc1864273fa09 100755
--- a/tools/prepare-bisect-perf-regression.py
+++ b/tools/prepare-bisect-perf-regression.py
@@ -57,9 +57,11 @@ def main():
parser.print_help()
return 1
- return bisect_utils.CreateBisectDirectoryAndSetupDepot(
- opts,
- bisect_utils.DEFAULT_GCLIENT_CUSTOM_DEPS)
+ if not bisect_utils.CheckIfBisectDepotExists(opts):
+ return bisect_utils.CreateBisectDirectoryAndSetupDepot(
+ opts,
+ bisect_utils.DEFAULT_GCLIENT_CUSTOM_DEPS)
+ return 0
if __name__ == '__main__':
« no previous file with comments | « tools/bisect_utils.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698