Fix shell command not working after new error reporting.

This commit is contained in:
Darko Poljak 2016-07-12 20:15:08 +02:00
commit e2bb629535
2 changed files with 15 additions and 7 deletions

View file

@ -73,7 +73,8 @@ class Shell(object):
self._init_environment()
log.info("Starting shell...")
self.local.run([self.shell], self.env)
# save_output=False -> do not catch stdout and stderr
self.local.run([self.shell], self.env, save_output=False)
log.info("Finished shell.")
@classmethod