updated GitUrl to include branch name

main
Justin Barnett 2025-04-08 08:59:26 -04:00
parent 8a89f55daf
commit 7beaab1fcb
1 changed files with 7 additions and 2 deletions

View File

@ -11,10 +11,15 @@ namespace UnityMcpBridge.Editor.Helpers
public static class ServerInstaller public static class ServerInstaller
{ {
private const string PackageName = "unity-mcp-server"; private const string PackageName = "unity-mcp-server";
private const string BranchName = "feature/install-overhaul";
private const string GitUrl = 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 = 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 // Typical uv installation paths per OS
private static readonly string[] WindowsUvPaths = new[] private static readonly string[] WindowsUvPaths = new[]