diff options
author | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2019-01-08 04:20:14 +0000 |
---|---|---|
committer | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2019-01-08 04:20:14 +0000 |
commit | 01171988e0c4d089b896a493d1b90d457fe7b80b (patch) | |
tree | 885fc7804fc311a9d3e60b8af139cd5ffdea2a12 | |
parent | 3e3984adf2bee0d5804a1762895002ca3e29cb33 (diff) | |
parent | 512c726e5996ccf979fd06a6e90fea65458a6225 (diff) | |
download | buildstream-01171988e0c4d089b896a493d1b90d457fe7b80b.tar.gz |
Merge branch 'tristan/fix-command-status-messages' into 'master'
sandbox/sandbox.py: Fix regression of command logging
See merge request BuildStream/buildstream!1044
-rw-r--r-- | buildstream/sandbox/sandbox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/sandbox/sandbox.py b/buildstream/sandbox/sandbox.py index f16772cce..617ebf5f5 100644 --- a/buildstream/sandbox/sandbox.py +++ b/buildstream/sandbox/sandbox.py @@ -592,7 +592,7 @@ class _SandboxBatch(): if command.label: context = self.sandbox._get_context() message = Message(self.sandbox._get_plugin_id(), MessageType.STATUS, - 'Running {}'.format(command.label)) + 'Running command', detail=command.label) context.message(message) exitcode = self.sandbox._run(command.command, self.flags, cwd=command.cwd, env=command.env) |