Make 'args' a list in the mach run handler.

This fixes a regression from 894e58f714.
This commit is contained in:
Ms2ger 2015-02-24 11:19:13 +01:00
parent a3ea3eed47
commit 322bf23db8

View file

@ -56,7 +56,7 @@ class MachCommands(CommandBase):
env = self.build_env()
env["RUST_BACKTRACE"] = "1"
args = self.get_binary_path(release)
args = [self.get_binary_path(release)]
# Borrowed and modified from:
# http://hg.mozilla.org/mozilla-central/file/c9cfa9b91dea/python/mozbuild/mozbuild/mach_commands.py#l883