Skip to content
This repository was archived by the owner on Jan 10, 2025. It is now read-only.

Commit 49441f3

Browse files
Call mlaunch instead of mtouch (#88)
* MTouch requires `--target-framework` after `13.20`, but when it calls `mlaunch` forwarding all the arguments, `mlaunch` doesn't handle the `--target-framework` parameter.
1 parent b157cf4 commit 49441f3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Touch.Server/Main.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,9 +204,9 @@ public static int Main (string[] args)
204204
if (String.IsNullOrEmpty (mt_root))
205205
mt_root = "/Library/Frameworks/Xamarin.iOS.framework/Versions/Current";
206206

207-
string mtouch = Path.Combine (mt_root, "bin", "mtouch");
207+
string mtouch = Path.Combine (mt_root, "bin", "mlaunch");
208208
if (!File.Exists (mtouch))
209-
mtouch = Path.Combine (mt_root, "usr", "bin", "mtouch");
209+
mtouch = Path.Combine (mt_root, "usr", "bin", "mlaunch");
210210

211211
Process proc = null;
212212
if (launchdev != null) {

0 commit comments

Comments
 (0)