From f8c76db9ca84a250befc7c7e8acefc24aba7d7c4 Mon Sep 17 00:00:00 2001 From: dsarno Date: Wed, 13 Aug 2025 14:31:10 -0700 Subject: [PATCH] Fix Unity Package Manager Git URL format in mcp_source.py --- mcp_source.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcp_source.py b/mcp_source.py index 535dbae..1cd708e 100755 --- a/mcp_source.py +++ b/mcp_source.py @@ -92,7 +92,7 @@ def write_json(path: pathlib.Path, data: dict) -> None: def build_options(repo_root: pathlib.Path, branch: str, origin_https: str): - upstream = "https://github.com/CoplayDev/unity-mcp.git?path=/UnityMcpBridge" + upstream = "git+https://github.com/CoplayDev/unity-mcp.git?path=/UnityMcpBridge" # Ensure origin is https origin = origin_https # If origin is a local file path or non-https, try to coerce to https github if possible