Skip to content

Commit e03f2aa

Browse files
authored
Merge pull request MessagePack-CSharp#1109 from neuecc/fix-messagepackwindow
Fix MessagePackWindow can not run mpc command
2 parents 1f4ceaa + 978fa23 commit e03f2aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MessagePack.UnityClient/Assets/Scripts/MessagePack/Unity/MessagePackWindow.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ async void OnGUI()
150150
invokingMpc = true;
151151
try
152152
{
153-
var log = await ProcessHelper.InvokeProcessStartAsync("dotnet", "mpc " + commnadLineArguments);
153+
var log = await ProcessHelper.InvokeProcessStartAsync("mpc", commnadLineArguments);
154154
UnityEngine.Debug.Log(log);
155155
}
156156
finally

0 commit comments

Comments
 (0)