We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be2bc50 commit a9471e9Copy full SHA for a9471e9
lib/services/ios-debug-service.ts
@@ -218,6 +218,9 @@ class IOSDebugService implements IDebugService {
218
cmd = `open -a Safari "${inspectorSourceLocation}"`;
219
} else {
220
let inspectorApplicationPath = path.join(inspectorPath, "NativeScript Inspector.app");
221
+ if(!this.$fs.exists(inspectorApplicationPath).wait()) {
222
+ this.$fs.unzip(path.join(inspectorPath, "NativeScript Inspector.zip"), inspectorPath).wait();
223
+ }
224
cmd = `open -a '${inspectorApplicationPath}' --args '${inspectorSourceLocation}' '${this.$projectData.projectName}'`;
225
}
226
0 commit comments