You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by ib...@apache.org on 2019/01/22 13:06:07 UTC

[incubator-mxnet] branch ib/ci-jl-win updated: redirect stderr to stdout

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

iblis pushed a commit to branch ib/ci-jl-win
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/ib/ci-jl-win by this push:
     new b65a302  redirect stderr to stdout
b65a302 is described below

commit b65a302c3bfadefdbf1cf0e1b43c77ea7da8bcb4
Author: Iblis Lin <ib...@hs.ntnu.edu.tw>
AuthorDate: Tue Jan 22 21:05:51 2019 +0800

    redirect stderr to stdout
---
 ci/windows/test_jl07_cpu.ps1 | 2 +-
 ci/windows/test_jl10_cpu.ps1 | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ci/windows/test_jl07_cpu.ps1 b/ci/windows/test_jl07_cpu.ps1
index c30468c..b146b78 100644
--- a/ci/windows/test_jl07_cpu.ps1
+++ b/ci/windows/test_jl07_cpu.ps1
@@ -48,5 +48,5 @@ $src='
 '
 
 $src > .\ci-build.jl
-& $JULIA .\ci-build.jl
+& $JULIA .\ci-build.jl 2>&1 | %{ "$_" }
 if (! $?) { Throw ("Error") }
diff --git a/ci/windows/test_jl10_cpu.ps1 b/ci/windows/test_jl10_cpu.ps1
index 2ff16fd..dd34b4d 100644
--- a/ci/windows/test_jl10_cpu.ps1
+++ b/ci/windows/test_jl10_cpu.ps1
@@ -48,5 +48,5 @@ $src='
 '
 
 $src > .\ci-build.jl
-& $JULIA .\ci-build.jl
+& $JULIA .\ci-build.jl 2>&1 | %{ "$_" }
 if (! $?) { Throw ("Error") }