From b8c89103237448766f63b415ffddd235873b158e Mon Sep 17 00:00:00 2001 From: Justin Barnett Date: Tue, 8 Apr 2025 10:56:05 -0400 Subject: [PATCH] update install location --- UnityMcpBridge/Editor/Helpers/ServerInstaller.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/UnityMcpBridge/Editor/Helpers/ServerInstaller.cs b/UnityMcpBridge/Editor/Helpers/ServerInstaller.cs index 15dfff2..030d494 100644 --- a/UnityMcpBridge/Editor/Helpers/ServerInstaller.cs +++ b/UnityMcpBridge/Editor/Helpers/ServerInstaller.cs @@ -125,7 +125,8 @@ namespace UnityMcpBridge.Editor.Helpers private static void InstallServer(string location) { // Create the directory if it doesn't exist - Directory.CreateDirectory(location); + string serverDir = Path.Combine(location, "src"); + Directory.CreateDirectory(serverDir); // Initialize git repo RunCommand("git", $"init", workingDirectory: location);