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 2019/04/14 15:39:35 UTC

[cordova-ios] branch janpio-594_deployment updated: fix eslint stuff

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

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


The following commit(s) were added to refs/heads/janpio-594_deployment by this push:
     new ce4fbc7  fix eslint stuff
ce4fbc7 is described below

commit ce4fbc7ebe3f24d7d6af2696bf692bf0c7010b69
Author: Jan Piotrowski <pi...@gmail.com>
AuthorDate: Sun Apr 14 17:39:22 2019 +0200

    fix eslint stuff
---
 bin/templates/scripts/cordova/lib/run.js | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/bin/templates/scripts/cordova/lib/run.js b/bin/templates/scripts/cordova/lib/run.js
index 2bfc376..3759b82 100644
--- a/bin/templates/scripts/cordova/lib/run.js
+++ b/bin/templates/scripts/cordova/lib/run.js
@@ -204,13 +204,13 @@ function startSim (appPath, target) {
 
 function iossimLaunch (appPath, devicetypeid, log, exit) {
     var f = path.resolve(path.dirname(require.resolve('ios-sim')), 'bin', 'ios-sim');
-    
+
     var params = ['launch', appPath, '--devicetypeid', devicetypeid, '--log', log, exit];
-    console.log("$ " + f + ' ' + params.join(' '));
+    console.log('$ ' + f + ' ' + params.join(' '));
     var proc = cp.spawn(f, params);
-    
+
     proc.stdout.on('data', (data) => {
-        console.log("ios-sim log: " + data.toString());
+        console.log('ios-sim log: ' + data.toString());
     });
 }
 


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