diff options
author | Martin Robinson <mrobinson@webkit.org> | 2023-06-23 11:07:18 +0200 |
---|---|---|
committer | Martin Robinson <mrobinson@igalia.com> | 2023-07-03 21:40:24 +0200 |
commit | 633d9b0eb964b09bf4dbb46d81a965a4be2fe8f5 (patch) | |
tree | 9b1eed6c332aaff352d9e6c52a9fe2c081129b69 /python/servo/bootstrap_commands.py | |
parent | 35ab3116358a50a0ffa549bbe90ce8d2cc755ddb (diff) | |
download | servo-633d9b0eb964b09bf4dbb46d81a965a4be2fe8f5.tar.gz servo-633d9b0eb964b09bf4dbb46d81a965a4be2fe8f5.zip |
Windows bootstrap support
Diffstat (limited to 'python/servo/bootstrap_commands.py')
-rw-r--r-- | python/servo/bootstrap_commands.py | 4 |
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 |