XCodeHelper: fix issue where lime test ios -simulator may try to install app on unavailable iOS simulators
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user