Skip to content

Commit bb3486f

Browse files
committed
fix: fix deploy on iOS devices
1 parent ac38f16 commit bb3486f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/controllers/deploy-controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export class DeployController {
1010
const { buildData, deviceDescriptors } = data;
1111

1212
const executeAction = async (device: Mobile.IDevice) => {
13-
await this.$buildController.prepareAndBuild(buildData);
13+
await this.$buildController.prepareAndBuild({ ...buildData, buildForDevice: !device.isEmulator });
1414
await this.$deviceInstallAppService.installOnDevice(device, buildData);
1515
};
1616

0 commit comments

Comments
 (0)