mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
git: save changed submodules in check and non-check mode (#4392)
This commit is contained in:
@@ -902,10 +902,12 @@ def main():
|
||||
submodules_updated = False
|
||||
if recursive and not bare:
|
||||
submodules_updated = submodules_fetch(git_path, module, remote, track_submodules, dest)
|
||||
if submodules_updated:
|
||||
result.update(submodules_changed=submodules_updated)
|
||||
|
||||
if module.check_mode:
|
||||
if submodules_updated:
|
||||
result.update(changed=True, after=remote_head, submodules_changed=True)
|
||||
result.update(changed=True, after=remote_head)
|
||||
else:
|
||||
result.update(changed=False, after=remote_head)
|
||||
module.exit_json(**result)
|
||||
|
||||
Reference in New Issue
Block a user