aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/bootstrap_commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/servo/bootstrap_commands.py')
-rw-r--r--python/servo/bootstrap_commands.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/bootstrap_commands.py b/python/servo/bootstrap_commands.py
index f75be592e74..f8e64754b23 100644
--- a/python/servo/bootstrap_commands.py
+++ b/python/servo/bootstrap_commands.py
@@ -46,7 +46,7 @@ class MachCommands(CommandBase):
# ./mach bootstrap calls mach_bootstrap.bootstrap_command_only so that
# it can install dependencies without needing mach's dependencies
try:
- servo.platform.get().bootstrap(self.context.sharedir, force)
+ servo.platform.get().bootstrap(force)
except NotImplementedError as exception:
print(exception)
return 1
@@ -60,7 +60,7 @@ class MachCommands(CommandBase):
help='Boostrap without confirmation')
def bootstrap_gstreamer(self, force=False):
try:
- servo.platform.get().bootstrap_gstreamer(self.context.sharedir, force)
+ servo.platform.get().bootstrap_gstreamer(force)
except NotImplementedError as exception:
print(exception)
return 1