forked from platypush/platypush
[application
] application.install
should redirect stderr->stdout.
This commit is contained in:
parent
8b5871af0e
commit
e65eef34d3
1 changed files with 1 additions and 1 deletions
|
@ -68,4 +68,4 @@ class ApplicationPlugin(Plugin):
|
||||||
|
|
||||||
for cmd in install_cmds:
|
for cmd in install_cmds:
|
||||||
self.logger.info('> %s', cmd)
|
self.logger.info('> %s', cmd)
|
||||||
subprocess.check_call(cmd, shell=True)
|
subprocess.check_call(cmd, shell=True, stderr=subprocess.STDOUT)
|
||||||
|
|
Loading…
Reference in a new issue