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/16 15:16:40 UTC

[cordova-ios] branch janpio-594_deployment updated: stdio=pipe

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 2a075c6  stdio=pipe
2a075c6 is described below

commit 2a075c6908634aadb5715827eaa105e7e8e51737
Author: Jan Piotrowski <pi...@gmail.com>
AuthorDate: Tue Apr 16 17:16:27 2019 +0200

    stdio=pipe
---
 bin/templates/scripts/cordova/lib/run.js | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/bin/templates/scripts/cordova/lib/run.js b/bin/templates/scripts/cordova/lib/run.js
index 9ce1cb3..e0da41e 100644
--- a/bin/templates/scripts/cordova/lib/run.js
+++ b/bin/templates/scripts/cordova/lib/run.js
@@ -204,11 +204,9 @@ 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(' '));
 
-    return superspawn.spawn(f, params, { cwd: projectPath, printCommand: true, stdio: 'inherit' })
+    return superspawn.spawn(f, params, { cwd: projectPath, printCommand: true, stdio: 'pipe' })
         .progress(function (stdio) {
             if (stdio.stderr) { 
                 console.error(stdio.stderr); 


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