Skip to content

Commit

Permalink
Use extensions on Window's binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Apr 27, 2017
1 parent f772d2e commit ac264fe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ environment:
PYTHON_MINOR: 6

cache:
- .venv
- .venv -> .appveyor.yml

install:
# Export build paths
Expand Down
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ ifneq ($(findstring win32, $(PLATFORM)), )
BIN := $(ENV)/Scripts
ACTIVATE := $(BIN)/activate.bat
OPEN := cmd /c start
PYTHON := $(BIN)/python.exe
PIP := $(BIN)/pip.exe
else
BIN := $(ENV)/bin
ACTIVATE := . $(BIN)/activate
Expand All @@ -48,9 +50,9 @@ else
else
OPEN := open
endif
PYTHON := $(BIN)/python
PIP := $(BIN)/pip
endif
PYTHON := $(BIN)/python
PIP := $(BIN)/pip

# MAIN TASKS ###################################################################

Expand Down

0 comments on commit ac264fe

Please sign in to comment.