Skip to content

Commit

Permalink
Disable device-ctl for mlaunch tunnel #146
Browse files Browse the repository at this point in the history
  • Loading branch information
JaneySprings committed Nov 27, 2024
1 parent de3f722 commit 20a4929
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/DotNet.Meteor.Common/Apple/MonoLauncher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ public static Process TcpTunnel(string serial, int port, IProcessLogger? logger
FileInfo tool = AppleSdkLocator.MLaunchTool();
return new ProcessRunner(tool, new ProcessArgumentBuilder()
.Append($"--tcp-tunnel={port}:{port}")
.Append($"--devname={serial}"), logger)
.Append($"--devname={serial}")
.Append( "--use-device-ctl=false"), logger)
.Start();
}

Expand Down

0 comments on commit 20a4929

Please sign in to comment.