From f270f3798d67553e7d83e0f461940210ddfad938 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Tue, 4 Sep 2018 12:52:49 +0530 Subject: [PATCH] Comment on ./mach bootstrap --- python/servo/bootstrap_commands.py | 3 +++ 1 file changed, 3 insertions(+) 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',