mirror of
https://github.com/servo/servo
synced 2026-04-25 17:15:48 +02:00
bootstrap: Add a --skip-platform option (#32176)
This allows installign `taplo` and `crown` when you are installing dependencies manually.
This commit is contained in:
@@ -198,7 +198,9 @@ def bootstrap_command_only(topdir):
|
||||
import servo.util
|
||||
|
||||
try:
|
||||
servo.platform.get().bootstrap('-f' in sys.argv or '--force' in sys.argv)
|
||||
force = '-f' in sys.argv or '--force' in sys.argv
|
||||
skip_platform = '--skip-platform' in sys.argv
|
||||
servo.platform.get().bootstrap(force, skip_platform)
|
||||
except NotImplementedError as exception:
|
||||
print(exception)
|
||||
return 1
|
||||
|
||||
Reference in New Issue
Block a user