mirror of
https://github.com/servo/servo.git
synced 2025-06-13 19:04:30 +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
|
return False
|
||||||
|
|
||||||
def bootstrap(self, force: bool, skip_platform: bool):
|
def bootstrap(self, force: bool, skip_platform: bool):
|
||||||
|
installed_something = False
|
||||||
if not skip_platform:
|
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_taplo(force)
|
||||||
installed_something |= self.install_crown(force)
|
installed_something |= self.install_crown(force)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue