return results from run()

Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
This commit is contained in:
Nico Schottelius 2012-02-15 16:25:18 +01:00
parent a4882e7e30
commit ab48a72ce1
2 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ class Local(object):
command = ["/bin/sh", "-e"]
command.append(script)
self.run(command, env, return_output)
return self.run(command, env, return_output)
def link_emulator(self, exec_path):
"""Link emulator to types"""

View File

@ -143,4 +143,4 @@ class Remote(object):
command = ["/bin/sh", "-e"]
command.append(script)
self.run(command, env, return_output)
return self.run(command, env, return_output)