Skip to content

Commit 589eae1

Browse files
authored
Fixes runIOS regressions #18681
1 parent 2e38418 commit 589eae1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

local-cli/runIOS/runIOS.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,10 @@ Try closing the simulator or run the command again without specifying a simulato
127127
}
128128
}
129129

130-
buildProject(xcodeProject, selectedSimulator.udid, scheme, args.configuration, args.packager, args.verbose)
131-
.then((appName) => resolve(selectedSimulator.udid, appName));
130+
buildProject(xcodeProject, selectedSimulator.udid, scheme, args.configuration, args.packager, args.verbose, args.port)
131+
.then((appName) => resolve({ udid: selectedSimulator.udid, appName }));
132132
})
133-
.then((udid, appName) => {
133+
.then(({udid, appName}) => {
134134
if (!appName) {
135135
appName = scheme;
136136
}

0 commit comments

Comments
 (0)