Skip to content

Commit 80f6cb7

Browse files
Merge pull request #88 from telerik/vladimirov/version-202
Set version to 2.0.2
2 parents 4528b59 + db19ee6 commit 80f6cb7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lib/iphone-simulator-xcode-simctl.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -149,19 +149,19 @@ export class XCodeSimctlSimulator extends IPhoneSimulatorNameGetter implements I
149149
device = device || this.getDeviceToRun();
150150
if (!this.isDeviceBooted(device)) {
151151
let bootedDevice = this.getBootedDevice();
152-
if(bootedDevice && bootedDevice.id !== device.id) {
153-
this.killSimulator();
152+
if (bootedDevice && bootedDevice.id !== device.id) {
153+
this.killSimulator();
154154
}
155155

156156
common.startSimulator(device.id);
157157
// startSimulaltor doesn't always finish immediately, and the subsequent
158158
// install fails since the simulator is not running.
159159
// Give it some time to start before we attempt installing.
160-
utils.sleep(1000);
160+
utils.sleep(1000);
161161
}
162162
}
163-
164-
private killSimulator(): Promise<any> {
163+
164+
private killSimulator(): void {
165165
childProcess.execSync("pkill -9 -f Simulator");
166166
}
167167
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ios-sim-portable",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "",
55
"main": "./lib/ios-sim.js",
66
"scripts": {

0 commit comments

Comments
 (0)