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

Unified Diff: download_from_google_storage.py

Issue 17351008: Add an alternate default boto file for bootstrapping source. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools/
Patch Set: Rebased Created 7 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: download_from_google_storage.py
===================================================================
--- download_from_google_storage.py (revision 207434)
+++ download_from_google_storage.py (working copy)
@@ -238,6 +238,10 @@
return max_ret_code
+def ifexists(a):
+ return a if os.path.exists(a) else None
+
+
def main(args):
usage = ('usage: %prog [options] target\n'
'Target must be:\n'
@@ -254,7 +258,8 @@
parser.add_option('-b', '--bucket',
help='Google Storage bucket to fetch from.')
parser.add_option('-e', '--boto',
- help='Specify a custom boto file.')
+ help='Specify a custom boto file.',
+ default=ifexists(os.path.expanduser('~/.boto.depot_tools')))
Ryan Tseng 2013/06/26 17:44:57 Instead of hardcoding ~/.boto.depot_toos, i'd rath
Peter Mayo 2013/06/26 18:20:54 The .netrc and .ssh configs are in the home direct
Ryan Tseng 2013/06/26 19:24:37 We have some code in run_slave.py that checks to s
parser.add_option('-c', '--no_resume', action='store_true',
help='Resume download if file is partially downloaded.')
parser.add_option('-f', '--force', action='store_true',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698