auto merge of #4075 : nwin/servo/fix-4037, r=Ms2ger

Fixes #4037
This commit is contained in:
bors-servo 2014-11-23 09:33:36 -07:00
commit 593e3bc40c

View file

@ -26,8 +26,10 @@ class MachCommands(CommandBase):
'params', default=None, nargs='...',
help="Command-line arguments to be passed through to Servo")
def run(self, params):
env = self.build_env()
env["RUST_BACKTRACE"] = "1"
subprocess.check_call([path.join("target", "servo")] + params,
env=self.build_env())
env=env)
@Command('doc',
description='Generate documentation',