From 7beaab1fcb3ba62c0ff98daaae8b8c3ba6deb315 Mon Sep 17 00:00:00 2001 From: Justin Barnett Date: Tue, 8 Apr 2025 08:59:26 -0400 Subject: [PATCH] updated GitUrl to include branch name --- UnityMcpBridge/Editor/Helpers/ServerInstaller.cs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/UnityMcpBridge/Editor/Helpers/ServerInstaller.cs b/UnityMcpBridge/Editor/Helpers/ServerInstaller.cs index da04b24..43f3277 100644 --- a/UnityMcpBridge/Editor/Helpers/ServerInstaller.cs +++ b/UnityMcpBridge/Editor/Helpers/ServerInstaller.cs @@ -11,10 +11,15 @@ namespace UnityMcpBridge.Editor.Helpers public static class ServerInstaller { private const string PackageName = "unity-mcp-server"; + private const string BranchName = "feature/install-overhaul"; private const string GitUrl = - "git+https://github.com/justinpbarnett/unity-mcp.git#subdirectory=UnityMcpServer"; + "git+https://github.com/justinpbarnett/unity-mcp.git@" + + BranchName + + "#subdirectory=UnityMcpServer"; private const string PyprojectUrl = - "https://raw.githubusercontent.com/justinpbarnett/unity-mcp/master/UnityMcpServer/pyproject.toml"; + "https://raw.githubusercontent.com/justinpbarnett/unity-mcp/" + + BranchName + + "/UnityMcpServer/pyproject.toml"; // Typical uv installation paths per OS private static readonly string[] WindowsUvPaths = new[]