return results from run()

Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
remotes/origin/feature_files_export
Nico Schottelius 13 years ago
parent a4882e7e30
commit ab48a72ce1
  1. 2
      lib/cdist/exec/local.py
  2. 2
      lib/cdist/exec/remote.py

@ -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"""

@ -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)

Loading…
Cancel
Save