Set -c local cwd to . if basedir is empty

This commit is contained in:
Daniel Hokka Zakrisson 2012-11-23 13:36:09 +01:00
parent 715d875dcb
commit db1a65342a

View file

@ -48,7 +48,10 @@ class Connection(object):
cmd = "sudo -u {0} -s {1}".format(sudo_user, cmd)
vvv("EXEC %s" % cmd, host=self.host)
p = subprocess.Popen(cmd, cwd=self.runner.basedir, shell=True, stdin=None,
basedir = self.runner.basedir
if basedir == '':
basedir = '.'
p = subprocess.Popen(cmd, cwd=basedir, shell=True, stdin=None,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = p.communicate()
return ("", stdout, stderr)