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

Unified Diff: build/android/pylib/utils/google_storage_helper.py

Issue 2867503002: Invoke gsutil with -quiet in our test_runner scripts. (Closed)
Patch Set: Created 3 years, 7 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: build/android/pylib/utils/google_storage_helper.py
diff --git a/build/android/pylib/utils/google_storage_helper.py b/build/android/pylib/utils/google_storage_helper.py
index d8196c8f06db2da8ed85405403ed4d5dcca050c5..98f41a7fffedb90d7a7dd595d3a8a7a79a3f2241 100644
--- a/build/android/pylib/utils/google_storage_helper.py
+++ b/build/android/pylib/utils/google_storage_helper.py
@@ -53,7 +53,7 @@ def upload(name, filepath, bucket, content_type=None, authenticated_link=True):
gs_path = 'gs://%s/%s' % (bucket, name)
logging.info('Uploading %s to %s', filepath, gs_path)
- cmd = [_GSUTIL_PATH]
+ cmd = [_GSUTIL_PATH, '-q']
if content_type:
cmd.extend(['-h', 'Content-Type:%s' % content_type])
cmd.extend(['cp', filepath, gs_path])
« 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