Skip to content

Commit fc11714

Browse files
fix: only iterate on booted devices (#2225)
1 parent 6eb9595 commit fc11714

File tree

1 file changed

+1
-1
lines changed
  • packages/cli-platform-apple/src/commands/runCommand

1 file changed

+1
-1
lines changed

packages/cli-platform-apple/src/commands/runCommand/createRun.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ const createRun =
230230

231231
logger.info(`Found booted ${booted.map(({name}) => name).join(', ')}`);
232232

233-
for (const device of devices) {
233+
for (const device of bootedDevices) {
234234
await runOnDevice(
235235
device,
236236
platformName,

0 commit comments

Comments
 (0)