diff options
author | Aneesh Agrawal <aneeshusa@gmail.com> | 2017-01-13 16:40:38 -0500 |
---|---|---|
committer | Aneesh Agrawal <aneeshusa@gmail.com> | 2017-01-14 00:10:50 -0500 |
commit | 5b8d783f4cb622fa68c5270b27ebad1e838ee7cb (patch) | |
tree | 8699f358414dd0ab37805122de6b3e3bb1ba283a /python/servo/bootstrapper/bootstrap.py | |
parent | 2fb9a345d6341f57ab4cfdd9a1ae68b2bbd5f9a2 (diff) | |
download | servo-5b8d783f4cb622fa68c5270b27ebad1e838ee7cb.tar.gz servo-5b8d783f4cb622fa68c5270b27ebad1e838ee7cb.zip |
Remove unusable --android flag for `mach bootstrap`
`mach` can't do any bootstrapping for Android, so the flag is useless.
Diffstat (limited to 'python/servo/bootstrapper/bootstrap.py')
-rw-r--r-- | python/servo/bootstrapper/bootstrap.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/python/servo/bootstrapper/bootstrap.py b/python/servo/bootstrapper/bootstrap.py index d07dc12fc3c..4cd1fc7bc5c 100644 --- a/python/servo/bootstrapper/bootstrap.py +++ b/python/servo/bootstrapper/bootstrap.py @@ -30,13 +30,11 @@ class Bootstrapper(object): self.instance = cls(**args) self.instance.context = context - def bootstrap(self, android=False, interactive=False, force=False): + def bootstrap(self, interactive=False, force=False): self.instance.interactive = interactive self.instance.force = force - if android: - self.instance.install_mobile_android_packages() - elif force: + if force: self.instance.install_system_packages() else: self.instance.ensure_system_packages() |