return results from run()
Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
This commit is contained in:
parent
a4882e7e30
commit
ab48a72ce1
2 changed files with 2 additions and 2 deletions
|
@ -119,7 +119,7 @@ class Local(object):
|
||||||
command = ["/bin/sh", "-e"]
|
command = ["/bin/sh", "-e"]
|
||||||
command.append(script)
|
command.append(script)
|
||||||
|
|
||||||
self.run(command, env, return_output)
|
return self.run(command, env, return_output)
|
||||||
|
|
||||||
def link_emulator(self, exec_path):
|
def link_emulator(self, exec_path):
|
||||||
"""Link emulator to types"""
|
"""Link emulator to types"""
|
||||||
|
|
|
@ -143,4 +143,4 @@ class Remote(object):
|
||||||
command = ["/bin/sh", "-e"]
|
command = ["/bin/sh", "-e"]
|
||||||
command.append(script)
|
command.append(script)
|
||||||
|
|
||||||
self.run(command, env, return_output)
|
return self.run(command, env, return_output)
|
||||||
|
|
Loading…
Reference in a new issue