Skip to content

Commit

Permalink
XCodeHelper: fix issue where lime test ios -simulator may try to inst…
Browse files Browse the repository at this point in the history
…all app on unavailable iOS simulators
  • Loading branch information
joshtynjala committed Nov 11, 2024
1 parent 051f4d5 commit 35d23c6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lime/tools/XCodeHelper.hx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ class XCodeHelper
{
if (StringTools.startsWith(line, "--"))
{
if (line.indexOf("iOS") > -1)
if (line.indexOf("Unavailable") > -1)
{
foundSection = false;
}
else if (line.indexOf("iOS") > -1)
{
foundSection = true;
}
Expand Down

0 comments on commit 35d23c6

Please sign in to comment.