There was an error while loading. Please reload this page.
1 parent e4ccf61 commit 7b303b5Copy full SHA for 7b303b5
UnityMcpBridge/Editor/Helpers/ServerInstaller.cs
@@ -146,7 +146,12 @@ private static void InstallServer(string location)
146
RunCommand("git", $"checkout {BranchName}", workingDirectory: location);
147
148
// Create version.txt file based on pyproject.toml, stored at the root level
149
- string pyprojectPath = Path.Combine(location, "UnityMcpServer", "pyproject.toml");
+ string pyprojectPath = Path.Combine(
150
+ location,
151
+ "UnityMcpServer",
152
+ "src",
153
+ "pyproject.toml"
154
+ );
155
if (File.Exists(pyprojectPath))
156
{
157
string pyprojectContent = File.ReadAllText(pyprojectPath);
0 commit comments