[application] application.install should redirect stderr->stdout.

This commit is contained in:
Fabio Manganiello 2023-10-22 01:44:39 +02:00
parent 8b5871af0e
commit e65eef34d3
Signed by: blacklight
GPG key ID: D90FBA7F76362774

View file

@ -68,4 +68,4 @@ class ApplicationPlugin(Plugin):
for cmd in install_cmds:
self.logger.info('> %s', cmd)
subprocess.check_call(cmd, shell=True)
subprocess.check_call(cmd, shell=True, stderr=subprocess.STDOUT)