aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/post_build_commands.py
diff options
context:
space:
mode:
authorMs2ger <ms2ger@gmail.com>2015-02-24 11:19:13 +0100
committerMs2ger <ms2ger@gmail.com>2015-02-24 11:19:13 +0100
commit322bf23db8c82c71d916ccd14dbc0914ce9e229c (patch)
tree251033a8c4eeec16b37c69a3769cdc3389ffb9bd /python/servo/post_build_commands.py
parenta3ea3eed47713a4a6faa86c575bc2ac95c5fe135 (diff)
downloadservo-322bf23db8c82c71d916ccd14dbc0914ce9e229c.tar.gz
servo-322bf23db8c82c71d916ccd14dbc0914ce9e229c.zip
Make 'args' a list in the mach run handler.
This fixes a regression from 894e58f714de0f3d65aeb943dbf8f569feb8c1d6.
Diffstat (limited to 'python/servo/post_build_commands.py')
-rw-r--r--python/servo/post_build_commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py
index bfa679a795e..b28ef968091 100644
--- a/python/servo/post_build_commands.py
+++ b/python/servo/post_build_commands.py
@@ -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