Skip to content

Commit

Permalink
Update appveyor.yml
Browse files Browse the repository at this point in the history
Fix "cd" into build directory
  • Loading branch information
jason-neal committed May 22, 2018
1 parent de1829e commit deef3c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down

0 comments on commit deef3c8

Please sign in to comment.