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 16:28:10 UTC

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

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 6e987b6  fix command
6e987b6 is described below

commit 6e987b641086e48e26757e5bd85d9e25af3de582
Author: Iblis Lin <ib...@hs.ntnu.edu.tw>
AuthorDate: Mon Jan 21 00:27:48 2019 +0800

    fix command
---
 ci/windows/test_jl07_cpu.ps1 | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ci/windows/test_jl07_cpu.ps1 b/ci/windows/test_jl07_cpu.ps1
index 4c90263..a867372 100644
--- a/ci/windows/test_jl07_cpu.ps1
+++ b/ci/windows/test_jl07_cpu.ps1
@@ -34,9 +34,9 @@ Start-Process -Wait "$JULIA_DIR\julia-binary.exe" -ArgumentList "/S /D=$JULIA_DI
 if (! $?) { Throw ("Error on installing Julia") }
 
 C:\julia07\julia\bin\julia -e "using InteractiveUtils; versioninfo()"
-echo 'using Pkg; Pkg.develop(PackageSpec(name = "MXNet", path = "julia"))' | $JULIA
+echo 'using Pkg; Pkg.develop(PackageSpec(name = "MXNet", path = "julia"))' | & $JULIA
 if (! $?) { Throw ("Error on installing MXNet") }
-echo 'using Pkg; Pkg.build("MXNet")' | $JULIA
+echo 'using Pkg; Pkg.build("MXNet")' | & $JULIA
 if (! $?) { Throw ("Error on building MXNet") }
-echo 'using Pkg; Pkg.test("MXNet")' | $JULIA
+echo 'using Pkg; Pkg.test("MXNet")' | & $JULIA
 if (! $?) { Throw ("Error on testing") }