Fix script path

This commit is contained in:
2026-03-16 13:50:23 -05:00
parent 9a29f33890
commit a9fb5dc45a
+2 -1
View File
@@ -196,7 +196,8 @@ def update_products(issues_dir: Path, products_path: Path) -> None:
def main() -> int:
args = parse_args()
repo_root = Path(__file__).resolve().parent
script_dir = Path(__file__).resolve().parent
repo_root = script_dir.parent
issues_dir = (repo_root / args.issues_dir).resolve()
products_path = (repo_root / args.products_json).resolve()