mirror of
https://github.com/munki/munki.git
synced 2026-04-24 05:49:42 -05:00
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:
@@ -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('/'))
|
||||
|
||||
Reference in New Issue
Block a user