diff options
author | UK992 <urbankrajnc92@gmail.com> | 2016-09-28 21:20:01 +0200 |
---|---|---|
committer | UK992 <urbankrajnc92@gmail.com> | 2016-09-28 22:58:38 +0200 |
commit | b0fabec6c748877bb4f6c5caf181a4d6cdedc038 (patch) | |
tree | b31b0597f50bdd17d5e9d5df4ec7457b529c132d /python/servo/bootstrap_commands.py | |
parent | a082501173918d6a5808881f84556cb78391b9b2 (diff) | |
download | servo-b0fabec6c748877bb4f6c5caf181a4d6cdedc038.tar.gz servo-b0fabec6c748877bb4f6c5caf181a4d6cdedc038.zip |
Fix msvc packages download dir for custom `.servo` location
Diffstat (limited to 'python/servo/bootstrap_commands.py')
-rw-r--r-- | python/servo/bootstrap_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/bootstrap_commands.py b/python/servo/bootstrap_commands.py index 78d15160736..8df02304529 100644 --- a/python/servo/bootstrap_commands.py +++ b/python/servo/bootstrap_commands.py @@ -145,7 +145,7 @@ class MachCommands(CommandBase): def bootstrap(self, android=False, interactive=False, force=False): from servo.bootstrapper.bootstrap import Bootstrapper - bootstrapper = Bootstrapper() + bootstrapper = Bootstrapper(self.context) bootstrapper.bootstrap(android=android, interactive=interactive, force=force) @Command('bootstrap-rust', |