From deef3c88c3f04735b5185e9a8495ac7a0381528b Mon Sep 17 00:00:00 2001 From: Jason Neal Date: Tue, 22 May 2018 10:44:19 +0100 Subject: [PATCH] Update appveyor.yml Fix "cd" into build directory --- appveyor.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 2e57343..c7520e4 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -13,9 +13,9 @@ install: - "%PYTHON%\\python.exe -m pip install wheel" # Installing spectrum/overload now - - cmd: "%APPVEYOR_BUILD_FOLDER%" - - "%PYTHON%\\python.exe -m pip install -r requirements.txt" - - "%PYTHON%\\python.exe setup.py install" + - cmd: "cd %APPVEYOR_BUILD_FOLDER%" + - cmd: "%PYTHON%\\python.exe -m pip install -r requirements.txt" + - cmd: "%PYTHON%\\python.exe setup.py install" build: off @@ -29,7 +29,7 @@ after_test: # Again, you only need build.cmd if you're building C extensions for # 64-bit Python 3.3/3.4. And you need to use %PYTHON% to get the correct # interpreter - - "%PYTHON%\\python.exe setup.py bdist_wheel" + - cmd: "%PYTHON%\\python.exe setup.py bdist_wheel" artifacts: # bdist_wheel puts your built wheel in the dist directory