Fixes #6582 Re-add regex to ignore untracked files that were never tracked

pull/4420/head
James Tanner 2014-03-19 15:42:40 -04:00
parent a9000e7f3a
commit 5f428041db
1 changed files with 1 additions and 0 deletions

View File

@ -223,6 +223,7 @@ def has_local_mods(module, git_path, dest, bare):
cmd = "%s status -s" % (git_path) cmd = "%s status -s" % (git_path)
rc, stdout, stderr = module.run_command(cmd, cwd=dest) rc, stdout, stderr = module.run_command(cmd, cwd=dest)
lines = stdout.splitlines() lines = stdout.splitlines()
lines = filter(lambda c: not re.search('^\\?\\?.*$', c), lines)
return len(lines) > 0 return len(lines) > 0