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/20 12:13:04 UTC

[incubator-mxnet] branch ib/ci-jl-win updated: fix installation

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 e075b61  fix installation
e075b61 is described below

commit e075b61e460ca0da0adc40aa80e862e2f650df5e
Author: Iblis Lin <ib...@hs.ntnu.edu.tw>
AuthorDate: Sun Jan 20 20:12:57 2019 +0800

    fix installation
---
 ci/windows/test_jl07_cpu.ps1 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ci/windows/test_jl07_cpu.ps1 b/ci/windows/test_jl07_cpu.ps1
index 87554b8..7e6fa2e 100644
--- a/ci/windows/test_jl07_cpu.ps1
+++ b/ci/windows/test_jl07_cpu.ps1
@@ -30,7 +30,7 @@ New-item -ItemType Directory C:\julia07
 if (! $?) { Throw ("Error on downloading Julia Windows binary") }
 
 # Run installer silently, output to C:\julia07\julia
-C:\julia07\julia-binary.exe /S /D=C:\julia07\julia
+Start-Process -Wait "C:\julia07\julia-binary.exe" -ArgumentList "/S /D=C:\julia07\julia"
 if (! $?) { Throw ("Error on installing Julia") }
 
 C:\julia07\julia\bin\julia -e "using InteractiveUtils; versioninfo()"