aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/bootstrapper/bootstrap.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/servo/bootstrapper/bootstrap.py')
-rw-r--r--python/servo/bootstrapper/bootstrap.py6
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()