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

Unified Diff: tools/dartium/upload_steps.py

Issue 1353373002: Fix obsolete gsutil command in scripts. Delete editor signing script. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address comment. Created 5 years, 3 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 | « tools/bots/cross-vm.py ('k') | tools/signing_script.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dartium/upload_steps.py
diff --git a/tools/dartium/upload_steps.py b/tools/dartium/upload_steps.py
index 8665f843928a9c3fe47c015d28ae41a09446f9df..2ab3fc8c722558f065aca2102d95e0011d2275be 100755
--- a/tools/dartium/upload_steps.py
+++ b/tools/dartium/upload_steps.py
@@ -192,7 +192,7 @@ def OldUploadFile(source, target):
# Set ACL.
if ACL is not None:
- cmd = [GSUTIL, 'setacl', ACL, target]
+ cmd = [GSUTIL, 'acl', 'set', ACL, target]
(status, output) = ExecuteCommand(cmd)
return status
« no previous file with comments | « tools/bots/cross-vm.py ('k') | tools/signing_script.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698