aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/devenv_commands.py
diff options
context:
space:
mode:
authorMatthew Rasmus <mattr@zzntd.com>2014-11-23 16:45:40 -0800
committerMatthew Rasmus <mattr@zzntd.com>2014-11-23 16:45:40 -0800
commit8cb7a6842fe83fc94856a118f3e85587eb18cb59 (patch)
tree43f212d5bb163763559e72799647438082d320f2 /python/servo/devenv_commands.py
parent850da4984682380bc204eae675749df76e50db54 (diff)
downloadservo-8cb7a6842fe83fc94856a118f3e85587eb18cb59.tar.gz
servo-8cb7a6842fe83fc94856a118f3e85587eb18cb59.zip
Remove allow_all_args from mach commands
Diffstat (limited to 'python/servo/devenv_commands.py')
-rw-r--r--python/servo/devenv_commands.py9
1 files changed, 3 insertions, 6 deletions
diff --git a/python/servo/devenv_commands.py b/python/servo/devenv_commands.py
index 5b4e14c1e3e..e031a957935 100644
--- a/python/servo/devenv_commands.py
+++ b/python/servo/devenv_commands.py
@@ -16,8 +16,7 @@ from servo.command_base import CommandBase, cd
class MachCommands(CommandBase):
@Command('cargo',
description='Run Cargo',
- category='devenv',
- allow_all_args=True)
+ category='devenv')
@CommandArgument(
'params', default=None, nargs='...',
help="Command-line arguments to be passed through to Cargo")
@@ -27,8 +26,7 @@ class MachCommands(CommandBase):
@Command('update-cargo',
description='Update Cargo dependencies',
- category='devenv',
- allow_all_args=True)
+ category='devenv')
@CommandArgument(
'params', default=None, nargs='...',
help='Command-line arguments to be passed through to cargo update')
@@ -45,8 +43,7 @@ class MachCommands(CommandBase):
@Command('rustc',
description='Run the Rust compiler',
- category='devenv',
- allow_all_args=True)
+ category='devenv')
@CommandArgument(
'params', default=None, nargs='...',
help="Command-line arguments to be passed through to rustc")