Make sure the cwd exists in run_command before trying to use it

pull/6453/head
James Cammarata 10 years ago
parent 751510141f
commit 60a7f57300

@ -1074,8 +1074,10 @@ class AnsibleModule(object):
try:
if cwd:
# make sure we're in the right working directory
if cwd and os.path.isdir(cwd):
os.chdir(cwd)
cmd = subprocess.Popen(args, **kwargs)
if data:

Loading…
Cancel
Save