Fix msvc packages download dir for custom .servo location

This commit is contained in:
UK992 2016-09-28 21:20:01 +02:00
parent a082501173
commit b0fabec6c7
3 changed files with 4 additions and 3 deletions

View file

@ -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',