diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2018-09-04 12:52:49 +0530 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2018-09-11 19:34:38 +0530 |
commit | f270f3798d67553e7d83e0f461940210ddfad938 (patch) | |
tree | acc8482be0cd358780263bbb8da0fcd0e38270d0 | |
parent | fc322182c41813b269d497e872e3e95b5a6e00eb (diff) | |
download | servo-f270f3798d67553e7d83e0f461940210ddfad938.tar.gz servo-f270f3798d67553e7d83e0f461940210ddfad938.zip |
Comment on ./mach bootstrap
-rw-r--r-- | python/servo/bootstrap_commands.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/servo/bootstrap_commands.py b/python/servo/bootstrap_commands.py index 84978737b64..0650f943278 100644 --- a/python/servo/bootstrap_commands.py +++ b/python/servo/bootstrap_commands.py @@ -53,6 +53,9 @@ class MachCommands(CommandBase): action='store_true', help='Boostrap without confirmation') def bootstrap(self, force=False): + # This entry point isn't actually invoked, ./mach bootstrap is directly + # called by mach (see mach_bootstrap.bootstrap_command_only) so that + # it can install dependencies without needing mach's dependencies return bootstrap.bootstrap(self.context, force=force) @Command('bootstrap-salt', |