diff options
author | Josh Matthews <josh@joshmatthews.net> | 2023-01-18 23:30:13 -0500 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2023-01-19 21:35:56 -0500 |
commit | cb1be846519bf492e28626b15963548ee534dc7c (patch) | |
tree | 10e7d333a49344e5351dfe7d5190e62ed90e0afe /python/servo/bootstrap_commands.py | |
parent | f70857906d228f5db6a808c8d9c28a7bad0684bb (diff) | |
download | servo-cb1be846519bf492e28626b15963548ee534dc7c.tar.gz servo-cb1be846519bf492e28626b15963548ee534dc7c.zip |
Remove unused salt bootstrapping process.
Diffstat (limited to 'python/servo/bootstrap_commands.py')
-rw-r--r-- | python/servo/bootstrap_commands.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/python/servo/bootstrap_commands.py b/python/servo/bootstrap_commands.py index e4862287cbe..904f5da109e 100644 --- a/python/servo/bootstrap_commands.py +++ b/python/servo/bootstrap_commands.py @@ -46,15 +46,6 @@ class MachCommands(CommandBase): # it can install dependencies without needing mach's dependencies return bootstrap.bootstrap(self.context, force=force) - @Command('bootstrap-salt', - description='Install and set up the salt environment.', - category='bootstrap') - @CommandArgument('--force', '-f', - action='store_true', - help='Boostrap without confirmation') - def bootstrap_salt(self, force=False): - return bootstrap.bootstrap(self.context, force=force, specific="salt") - @Command('bootstrap-gstreamer', description='Set up a local copy of the gstreamer libraries (linux only).', category='bootstrap') |