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

Unified Diff: upload_to_google_storage.py

Issue 86123002: Adds SSO auth to gsutil (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Bug fix or -> and Created 7 years 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 | « third_party/gsutil/plugins/sso_auth.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: upload_to_google_storage.py
diff --git a/upload_to_google_storage.py b/upload_to_google_storage.py
index e6cd2eeb5e54c9b8af99e38b71a03b67c9076e7c..35bc039364eaf89d9aa8036cfcdd751543d91f9f 100755
--- a/upload_to_google_storage.py
+++ b/upload_to_google_storage.py
@@ -234,7 +234,8 @@ def main(args):
# Make sure we can find a working instance of gsutil.
if os.path.exists(GSUTIL_DEFAULT_PATH):
- gsutil = Gsutil(GSUTIL_DEFAULT_PATH, boto_path=options.boto)
+ gsutil = Gsutil(GSUTIL_DEFAULT_PATH, boto_path=options.boto,
+ bypass_prodaccess=True)
else:
gsutil = None
for path in os.environ["PATH"].split(os.pathsep):
« no previous file with comments | « third_party/gsutil/plugins/sso_auth.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698