aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-07-22 14:53:18 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-07-22 14:53:18 -0400
commitb1781f2786d062c6c4678f18b9355421297c6d47 (patch)
tree5bce51590cd7c56e369e08f3450faf202b574d01 /appveyor.yml
parent4df6b3592b3a8e21006ee5d5b8e96ca685748954 (diff)
downloadexternal_python_setuptools-b1781f2786d062c6c4678f18b9355421297c6d47.tar.gz
external_python_setuptools-b1781f2786d062c6c4678f18b9355421297c6d47.tar.bz2
external_python_setuptools-b1781f2786d062c6c4678f18b9355421297c6d47.zip
Correct mklink usage. Symlink is the default.
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
index bd43fb2d..35938480 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -4,7 +4,8 @@ environment:
- PYTHON: "C:\\Python35-x64"
install:
- - "mklink /s /d \"C:\\Program Files\\Python\" %PYTHON%"
+ # symlink python from a directory with a space
+ - "mklink /d \"C:\\Program Files\\Python\" %PYTHON%"
- "SET PYTHON=\"C:\\Program Files\\Python\""
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"