fix: ignore .github in index.py

This commit is contained in:
Sefa Eyeoglu 2022-02-19 20:38:59 +01:00
parent cae711b7da
commit 10fa8a00a0
No known key found for this signature in database
GPG Key ID: C10411294912A422

View File

@ -16,7 +16,7 @@ def HashFile(hash, fname):
# ignore these files when indexing versions
ignore = set(["index.json", "package.json", ".git"])
ignore = set(["index.json", "package.json", ".git", ".github"])
# initialize output structures - package list level
packages = PolyMCPackageIndex()