aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots
diff options
context:
space:
mode:
authorGravatar Eric Boren <borenet@google.com>2016-11-09 09:56:37 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-11-09 15:23:34 +0000
commita34e95a77bd0812e4af3dbb3b3f83072fd04a780 (patch)
treef10fa565de651ca7ff94f0ef91cd17c036baa051 /infra/bots
parentec2249fc73b36621af9efd4a9fc62e1be84b784d (diff)
Fix assets.py args
BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=4588 Change-Id: Id2ddbabf8920e59341555f7f4c65a9b1ccabf4d6 Reviewed-on: https://skia-review.googlesource.com/4588 Reviewed-by: Kevin Lubick <kjlubick@google.com> Commit-Queue: Eric Boren <borenet@google.com>
Diffstat (limited to 'infra/bots')
-rwxr-xr-xinfra/bots/assets/assets.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/infra/bots/assets/assets.py b/infra/bots/assets/assets.py
index 3265a63b9e..096744856f 100755
--- a/infra/bots/assets/assets.py
+++ b/infra/bots/assets/assets.py
@@ -56,10 +56,12 @@ def main(argv):
prs_add = subs.add_parser('add', help='Add a new asset.')
prs_add.set_defaults(func=add)
prs_add.add_argument('asset_name', help='Name of the asset.')
+ prs_add.add_argument('--gsutil')
prs_remove = subs.add_parser('remove', help='Remove an asset.')
prs_remove.set_defaults(func=remove)
prs_remove.add_argument('asset_name', help='Name of the asset.')
+ prs_remove.add_argument('--gsutil')
prs_download = subs.add_parser(
'download', help='Download the current version of an asset.')