aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/post_build_commands.py
diff options
context:
space:
mode:
authorMatt Brubeck <mbrubeck@limpet.net>2015-12-08 11:12:38 -0800
committerMatt Brubeck <mbrubeck@limpet.net>2015-12-12 04:58:32 -0800
commit2a00eb6c08409e174c09d96e23f07d7c41b58b7e (patch)
tree8e9e0be70f1d8968bafb05ae74eb0f49a1393d0b /python/servo/post_build_commands.py
parent96dc0eb8892821627c287e6fa71e1ce03e7eb917 (diff)
downloadservo-2a00eb6c08409e174c09d96e23f07d7c41b58b7e.tar.gz
servo-2a00eb6c08409e174c09d96e23f07d7c41b58b7e.zip
Remove unused params from mach package command
Diffstat (limited to 'python/servo/post_build_commands.py')
-rw-r--r--python/servo/post_build_commands.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py
index 4d69e976e37..ee57ebf73dd 100644
--- a/python/servo/post_build_commands.py
+++ b/python/servo/post_build_commands.py
@@ -194,10 +194,7 @@ class PostBuildCommands(CommandBase):
help='Package the release build')
@CommandArgument('--dev', '-d', action='store_true',
help='Package the dev build')
- @CommandArgument(
- 'params', nargs='...',
- help="Command-line arguments to be passed through to Servo")
- def package(self, params, release=False, dev=False, debug=False, debugger=None):
+ def package(self, release=False, dev=False, debug=False, debugger=None):
env = self.build_env()
binary_path = self.get_binary_path(release, dev, android=True)