update install location

main
Justin Barnett 2025-04-08 10:56:05 -04:00
parent b36c4576d9
commit b8c8910323
1 changed files with 2 additions and 1 deletions

View File

@ -125,7 +125,8 @@ namespace UnityMcpBridge.Editor.Helpers
private static void InstallServer(string location) private static void InstallServer(string location)
{ {
// Create the directory if it doesn't exist // Create the directory if it doesn't exist
Directory.CreateDirectory(location); string serverDir = Path.Combine(location, "src");
Directory.CreateDirectory(serverDir);
// Initialize git repo // Initialize git repo
RunCommand("git", $"init", workingDirectory: location); RunCommand("git", $"init", workingDirectory: location);