manifestutil now ignores manifests whose name begins with a "."

git-svn-id: http://munki.googlecode.com/svn/trunk@1193 a4e17f2e-e282-11dd-95e1-755cbddbdd66
This commit is contained in:
Greg Neagle
2011-05-24 17:44:32 +00:00
parent c31343d0ff
commit e7945ec94c
+1 -1
View File
@@ -64,7 +64,7 @@ def getManifestNames():
for dirpath, dirnames, filenames in os.walk(manifests_path):
subdir = dirpath[len(manifests_path):]
for name in filenames:
if name.startswith("._") or name == ".DS_Store":
if name.startswith("."):
# don't process these
continue
manifests.append(os.path.join(subdir, name).lstrip('/'))