mirror of
https://github.com/appium/appium.git
synced 2026-05-03 00:41:07 -05:00
Fixing issue with line separations
This commit is contained in:
@@ -69,8 +69,7 @@ namespace SimpleTest
|
||||
string appPath = null;
|
||||
foreach(string path in appFinder.StandardOutput.ReadToEnd().Split(new char[] {'\n','\r'}))
|
||||
{
|
||||
if (!path.Trim().EndsWith(".dSYM") && path.Contains("" +
|
||||
"imulator"))
|
||||
if (!path.Trim().EndsWith(".dSYM") && path.ToLower().Contains("simulator"))
|
||||
{
|
||||
appPath = path.Trim();
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user