mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 00:03:10 +00:00
Fixes #6582 Re-add regex to ignore untracked files that were never tracked
This commit is contained in:
@@ -223,6 +223,7 @@ def has_local_mods(module, git_path, dest, bare):
|
||||
cmd = "%s status -s" % (git_path)
|
||||
rc, stdout, stderr = module.run_command(cmd, cwd=dest)
|
||||
lines = stdout.splitlines()
|
||||
lines = filter(lambda c: not re.search('^\\?\\?.*$', c), lines)
|
||||
|
||||
return len(lines) > 0
|
||||
|
||||
|
||||
Reference in New Issue
Block a user