forcing git fetch if sha1 are equal between repos but branch exists only at remote

Add an explanatory comment to the code
This commit is contained in:
Jan Duzinkiewicz 2014-12-23 20:12:42 +01:00 committed by Matt Clay
parent 3afaa2fef4
commit 9c6db69827

View file

@ -762,7 +762,9 @@ def main():
if version in get_tags(git_path, module, dest):
repo_updated = False
else:
repo_updated = False
# if the remote is a branch and we have the branch locally, exit early
if version in get_branches(git_path, module, dest):
repo_updated = False
if repo_updated is None:
if module.check_mode:
module.exit_json(changed=True, before=before, after=remote_head)