You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ja...@apache.org on 2018/12/06 14:40:25 UTC

[cordova-paramedic] branch master updated: Updated ParamedicKill.js to support qemu-system-x86_64 (#90)

This is an automated email from the ASF dual-hosted git repository.

janpio pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-paramedic.git


The following commit(s) were added to refs/heads/master by this push:
     new 3687bf6  Updated ParamedicKill.js to support qemu-system-x86_64 (#90)
3687bf6 is described below

commit 3687bf64220ad767c91b3b8a6a9d2425b20742ff
Author: Andreas Rehn <mr...@gmail.com>
AuthorDate: Thu Dec 6 15:40:21 2018 +0100

    Updated ParamedicKill.js to support qemu-system-x86_64 (#90)
    
    ### Platforms affected
    Android
    
    ### What does this PR do?
    Kills 64bit emulator on Mojave
    
    ### What testing has been done on this change?
    OSX Mojave, Emulator 28.0.16,  system-images;android-28;google_apis;x86
    
    
    ### Checklist
    - [ ] [Reported an issue](http://cordova.apache.org/contribute/issues.html) in the JIRA database
    - [ ] Commit message follows the format: "CB-3232: (android) Fix bug with resolving file paths", where CB-xxxx is the JIRA ID & "android" is the platform affected.
    - [ ] Added automated test coverage as appropriate for this change.
---
 lib/ParamedicKill.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/ParamedicKill.js b/lib/ParamedicKill.js
index 2aa0643..b77a419 100644
--- a/lib/ParamedicKill.js
+++ b/lib/ParamedicKill.js
@@ -65,7 +65,7 @@ ParamedicKill.prototype.tasksOnPlatform = function (platformName) {
         if (util.isWindows()) {
             tasks = ['emulator-arm.exe', 'qemu-system-i386.exe'];
         } else {
-            tasks = ['emulator64-x86', 'emulator64-arm', 'qemu-system-i386'];
+            tasks = ['emulator64-x86', 'emulator64-arm', 'qemu-system-i386', 'qemu-system-x86_64'];
         }
         break;
     case util.BROWSER:


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org