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

Unified Diff: tools/go/download.py

Issue 1243633002: Don't pass "-b" to gsutil when downloading go tool binaries. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 5 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: tools/go/download.py
diff --git a/tools/go/download.py b/tools/go/download.py
index 930623b19bd68600600b4cf28333a368a5324194..b2fcfe44ef69e690d7e5dd242bdf81d5470d89d1 100755
--- a/tools/go/download.py
+++ b/tools/go/download.py
@@ -62,7 +62,7 @@ def InstallGoBinaries(version):
os.mkdir(INSTALL_DIR)
# Download go tool binaries from GCS.
archive_path = os.path.join(INSTALL_DIR, 'go.tar.gz')
- download_cmd = ['python', GSUTIL_PATH, '-b', 'cp',
+ download_cmd = ['python', GSUTIL_PATH, 'cp',
'gs://mojo/go/tool/%s.tar.gz' % version,
archive_path]
if not RunCommand(download_cmd):
« 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