Skip to content

Commit

Permalink
fix: only iterate on booted devices (#2225)
Browse files Browse the repository at this point in the history
  • Loading branch information
szymonrybczak authored Dec 21, 2023
1 parent 6eb9595 commit fc11714
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ const createRun =

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

for (const device of devices) {
for (const device of bootedDevices) {
await runOnDevice(
device,
platformName,
Expand Down

0 comments on commit fc11714

Please sign in to comment.