Merge pull request #6814 from lonerr/devel

Fixed cwd for submodules update
pull/6824/head
Michael DeHaan 11 years ago
commit 2932a58420

@ -389,7 +389,7 @@ def submodule_update(git_path, module, dest):
cmd = [ git_path, 'submodule', 'sync' ]
(rc, out, err) = module.run_command(cmd, check_rc=True, cwd=dest)
cmd = [ git_path, 'submodule', 'update', '--init', '--recursive' ,'--remote' ]
(rc, out, err) = module.run_command(cmd)
(rc, out, err) = module.run_command(cmd, cwd=dest)
if rc != 0:
module.fail_json(msg="Failed to init/update submodules")
return (rc, out, err)

Loading…
Cancel
Save