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

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: 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)
@@ -46,6 +46,12 @@
env = os.environ.copy()
if self.boto_path:
env['AWS_CREDENTIAL_FILE'] = self.boto_path
+ else:
+ custompath = env.get('AWS_CREDENTIAL_FILE', '~/.boto') + '.depot_tools'
+ custompath = os.path.expanduser(custompath)
+ if os.path.exists(custompath):
+ env['AWS_CREDENTIAL_FILE'] = custompath
+
return subprocess2.call((sys.executable, self.path) + args,
env=env,
timeout=self.timeout)
« 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