Commit 4ebe4a20 authored by nicoo's avatar nicoo Committed by nicoo
Browse files

maintainers/scripts/sha-to-sri: ignore `gemset.nix` files

parent 87ad80ef
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -201,6 +201,10 @@ def fileToSRI(p: Path):


_SKIP_RE = re.compile("(generated by)|(do not edit)", re.IGNORECASE)
_IGNORE = frozenset({
    "gemset.nix",
    "yarn.nix",
})

if __name__ == "__main__":
    from sys import argv
@@ -239,7 +243,7 @@ if __name__ == "__main__":
                logger.info("Recursing into directory")
                for q in p.glob("**/*.nix"):
                    if q.is_file():
                        if q.name == "yarn.nix" or q.name.find("generated") != -1:
                        if q.name in _IGNORE or q.name.find("generated") != -1:
                            logger.info("File looks autogenerated, skipping!")
                            continue