diff options
author | Samson <16504129+sagudev@users.noreply.github.com> | 2024-04-29 15:33:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-29 13:33:12 +0000 |
commit | 6ca3bb440ea23480a3825cefa7a85a429d793a94 (patch) | |
tree | 4d90db600cc4ce3aacc7dfca20b3054cb2d036d0 /python/servo/platform/base.py | |
parent | fe6e1cfb296ac4d850163ee1f68a5c600eb0b6ab (diff) | |
download | servo-6ca3bb440ea23480a3825cefa7a85a429d793a94.tar.gz servo-6ca3bb440ea23480a3825cefa7a85a429d793a94.zip |
Run platform_bootstrap first (#31840)
Diffstat (limited to 'python/servo/platform/base.py')
-rw-r--r-- | python/servo/platform/base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/platform/base.py b/python/servo/platform/base.py index cb0c1be527b..e6d3e955cda 100644 --- a/python/servo/platform/base.py +++ b/python/servo/platform/base.py @@ -55,9 +55,9 @@ class Base: return False def bootstrap(self, force: bool): - installed_something = self.install_taplo(force) + installed_something = self._platform_bootstrap(force) + installed_something |= self.install_taplo(force) installed_something |= self.install_crown(force) - installed_something |= self._platform_bootstrap(force) if not installed_something: print("Dependencies were already installed!") |