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/13 18:03:07 UTC

[cordova-ios] branch janpio-594_deployment updated: add missing space in command logging

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 1d1bd3d  add missing space in command logging
1d1bd3d is described below

commit 1d1bd3df81fd6c1bf487e24a0b4e936578fa2b14
Author: Jan Piotrowski <pi...@gmail.com>
AuthorDate: Sat Apr 13 19:50:11 2019 +0200

    add missing space in command logging
---
 bin/templates/scripts/cordova/lib/run.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/templates/scripts/cordova/lib/run.js b/bin/templates/scripts/cordova/lib/run.js
index 792e0bf..b9fbd5e 100644
--- a/bin/templates/scripts/cordova/lib/run.js
+++ b/bin/templates/scripts/cordova/lib/run.js
@@ -206,7 +206,7 @@ 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) => {


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