mirror of
https://github.com/servo/servo.git
synced 2025-06-12 10:24:43 +00:00
Fix mach bootstrap --skip-platform (#32341)
This commit is contained in:
parent
5d5ac4ec64
commit
d47c8ff2ae
1 changed files with 2 additions and 1 deletions
|
@ -55,8 +55,9 @@ class Base:
|
|||
return False
|
||||
|
||||
def bootstrap(self, force: bool, skip_platform: bool):
|
||||
installed_something = False
|
||||
if not skip_platform:
|
||||
installed_something = self._platform_bootstrap(force)
|
||||
installed_something |= self._platform_bootstrap(force)
|
||||
installed_something |= self.install_taplo(force)
|
||||
installed_something |= self.install_crown(force)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue