mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
Remove unusable --android flag for mach bootstrap
`mach` can't do any bootstrapping for Android, so the flag is useless.
This commit is contained in:
parent
2fb9a345d6
commit
5b8d783f4c
5 changed files with 4 additions and 23 deletions
|
@ -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',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue