fix(module-registry): resolve manifest paths from registry in index update script

This commit is contained in:
2026-05-10 22:22:12 +08:00
parent 2b7e6718d9
commit 451f83e14d

View File

@@ -34,7 +34,7 @@ def build_external_modules() -> list[dict]:
version = manifest["version"] version = manifest["version"]
with_gateway = manifest.get("withGateway", False) with_gateway = manifest.get("withGateway", False)
rel_path = manifest_path.relative_to(ROOT / "repository").as_posix() rel_path = manifest_path.relative_to(ROOT / "registry").as_posix()
entries.append( entries.append(
{ {
@@ -55,4 +55,5 @@ def main() -> None:
if __name__ == "__main__": if __name__ == "__main__":
main() main()