@swmansion/argent 0.14.1-next.4 → 0.14.1-next.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tool-server.cjs +4 -2
- package/package.json +1 -1
package/dist/tool-server.cjs
CHANGED
|
@@ -118633,9 +118633,11 @@ async function bootIos(udid, registry2, force, headless) {
|
|
|
118633
118633
|
"com.apple.iphonesimulator",
|
|
118634
118634
|
"CurrentDeviceUDID",
|
|
118635
118635
|
udid
|
|
118636
|
-
])
|
|
118636
|
+
]).catch(() => {
|
|
118637
|
+
});
|
|
118637
118638
|
if (!headless) {
|
|
118638
|
-
await execFileAsync11("open", ["-a", "Simulator.app"])
|
|
118639
|
+
await execFileAsync11("open", ["-a", "Simulator.app"]).catch(() => execFileAsync11("open", ["-b", "com.apple.dt.Devices"])).catch(() => {
|
|
118640
|
+
});
|
|
118639
118641
|
}
|
|
118640
118642
|
return { platform: "ios", udid, booted: true };
|
|
118641
118643
|
}
|