From 5b8d783f4cb622fa68c5270b27ebad1e838ee7cb Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Fri, 13 Jan 2017 16:40:38 -0500 Subject: Remove unusable --android flag for `mach bootstrap` `mach` can't do any bootstrapping for Android, so the flag is useless. --- python/servo/bootstrap_commands.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'python/servo/bootstrap_commands.py') diff --git a/python/servo/bootstrap_commands.py b/python/servo/bootstrap_commands.py index 9bc7c60fd4a..49dd40648b1 100644 --- a/python/servo/bootstrap_commands.py +++ b/python/servo/bootstrap_commands.py @@ -136,17 +136,14 @@ class MachCommands(CommandBase): @CommandArgument('--interactive', "-i", action='store_true', help='Need to answer any (Y/n) interactive prompts.') - @CommandArgument('--android', - action='store_true', - help='Install required packages for Android') @CommandArgument('--force', '-f', action='store_true', help='Force reinstall packages') - def bootstrap(self, android=False, interactive=False, force=False): + def bootstrap(self, interactive=False, force=False): from servo.bootstrapper.bootstrap import Bootstrapper bootstrapper = Bootstrapper(self.context) - bootstrapper.bootstrap(android=android, interactive=interactive, force=force) + bootstrapper.bootstrap(interactive=interactive, force=force) @Command('bootstrap-rust', description='Download the Rust compiler', -- cgit v1.2.3