Remove unused params from mach package command

This commit is contained in:
Matt Brubeck 2015-12-08 11:12:38 -08:00
parent 96dc0eb889
commit 2a00eb6c08

View file

@ -194,10 +194,7 @@ class PostBuildCommands(CommandBase):
help='Package the release build') help='Package the release build')
@CommandArgument('--dev', '-d', action='store_true', @CommandArgument('--dev', '-d', action='store_true',
help='Package the dev build') help='Package the dev build')
@CommandArgument( def package(self, release=False, dev=False, debug=False, debugger=None):
'params', nargs='...',
help="Command-line arguments to be passed through to Servo")
def package(self, params, release=False, dev=False, debug=False, debugger=None):
env = self.build_env() env = self.build_env()
binary_path = self.get_binary_path(release, dev, android=True) binary_path = self.get_binary_path(release, dev, android=True)