From 314dcff249897484e636d5200c11f9aada5fe3af Mon Sep 17 00:00:00 2001 From: Avital Oliver Date: Tue, 21 Oct 2014 13:49:44 -0700 Subject: [PATCH] Kill iOS/iPhone simulator better Turns out different versions of the iOS simular have differently named apps, so we now call killall for both the old and the new name. --- tools/commands-cordova.js | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/commands-cordova.js b/tools/commands-cordova.js index 1a7bfdae64..1e80c7d33c 100644 --- a/tools/commands-cordova.js +++ b/tools/commands-cordova.js @@ -1781,6 +1781,7 @@ _.extend(IOS.prototype, { killSimulator: function () { var execFileSync = require('./utils.js').execFileSync; execFileSync('killall', ['iOS Simulator']); + execFileSync('killall', ['iPhone Simulator']); } });