From 73dfbcd38554ee55bade826ad458487f1c6f26ea Mon Sep 17 00:00:00 2001 From: AndrewAnnex Date: Mon, 27 Jul 2015 00:13:36 -0400 Subject: [PATCH] appvayor still complained about path to install_numpy.ps1 again12 --- appveyor.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 3034e173..67568b86 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -28,7 +28,8 @@ cache: init: # Check for numpy wheel, compile if absent (will take FOREVER to build!) #- "powershell appveyor\\install_numpy.ps1" - - ps: if (-not(Test-Path "C:\tmp\*.whl")) { iex "cmd /E:ON /V:ON /C $env:appveyor_build_folder\\appveyor\\windows_sdk.cmd pip wheel --wheel-dir=c:\\tmp numpy" } + - ps: "ls \:$env:appveyor_build_folder/\"" + - ps: if (-not(Test-Path "C:\tmp\*.whl")) { iex "cmd /E:ON /V:ON /C $env:appveyor_build_folder\appveyor\windows_sdk.cmd pip wheel --wheel-dir=c:\\tmp numpy" } # update path to use installed pip - set PATH=%PYTHON%\scripts;%PATH%