You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: popup is shown when searching for iOS Simulators
When Xcode Command Line tools are not installed, calling `xcrun` leads to a popup with suggestion to install Xcode Command Line Tools. Prevent this by checking if Xcode is installed and if not - do not spawn `xcrun`.
Fix incorrect interfaces and remove unused method.
thrownewError(`Error while executing command '${["xcrun","simctl",command].concat(args).join(" ")}'. Please ensure your tools are configured correctly. More info: ${result.stderr.toString()}`);
145
-
}
146
-
if(result){
147
-
if(result.signal){
148
-
// In some cases, sending Ctrl + C (SIGINT) is handled by the simctl itself and spawnSync finishes, but the SIGINT does not stop current process.
149
-
// In order to ensure the same signal is sent to the caller (CLI for example), send the signal manually:
0 commit comments