From 10fa8a00a0e9ee14263c58dbbadba2db00d08826 Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Sat, 19 Feb 2022 20:38:59 +0100 Subject: [PATCH] fix: ignore .github in index.py --- index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.py b/index.py index 8a989d4..6561a49 100755 --- a/index.py +++ b/index.py @@ -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()