Fixes runIOS regressions #18681
This commit is contained in:
parent
2e384184bc
commit
589eae1432
|
@ -127,10 +127,10 @@ Try closing the simulator or run the command again without specifying a simulato
|
|||
}
|
||||
}
|
||||
|
||||
buildProject(xcodeProject, selectedSimulator.udid, scheme, args.configuration, args.packager, args.verbose)
|
||||
.then((appName) => resolve(selectedSimulator.udid, appName));
|
||||
buildProject(xcodeProject, selectedSimulator.udid, scheme, args.configuration, args.packager, args.verbose, args.port)
|
||||
.then((appName) => resolve({ udid: selectedSimulator.udid, appName }));
|
||||
})
|
||||
.then((udid, appName) => {
|
||||
.then(({udid, appName}) => {
|
||||
if (!appName) {
|
||||
appName = scheme;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue