From afc6bf57a4e94a914341d19809888c5a266df641 Mon Sep 17 00:00:00 2001 From: 44r0n7 <44r0n7+gitea@pm.me> Date: Sat, 18 Jul 2026 18:29:03 -0400 Subject: [PATCH] fix: allow repeatable repository verification --- scripts/verify_repo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/verify_repo.py b/scripts/verify_repo.py index d7d837e..ca71a89 100755 --- a/scripts/verify_repo.py +++ b/scripts/verify_repo.py @@ -75,7 +75,7 @@ def check_markdown_links() -> None: def check_placeholders() -> None: - allowed_roots = {"crates", "docs", "scripts", ".github"} + allowed_roots = {"crates", "docs", "scripts", "target", ".github"} for child in ROOT.iterdir(): if child.is_dir() and not child.name.startswith(".") and child.name not in allowed_roots: fail(f"unexpected top-level directory: {child.name}")