From ec4be4f6b1497f33d8b23eda1253b2268c953c5d Mon Sep 17 00:00:00 2001 From: Xawotihs Date: Sat, 23 Aug 2014 00:53:33 +0200 Subject: [PATCH] Uses real python path --- appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index fc230992b..8d6b3d34a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -26,8 +26,8 @@ # scripts that run after cloning repository install: - ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:/get-pip.py') - - "%PYTHON%/python.exe C:/get-pip.py" - - "%PYTHON%/Scripts/pip.exe install pyjavaproperties" + - "C:/Python27/python.exe C:/get-pip.py" + - "C:/Python27/Scripts/pip.exe install pyjavaproperties" #---------------------------------# # build configuration # @@ -63,7 +63,7 @@ artifacts: # scripts to run before deployment before_deploy: - cd projects/mtg/bin -- "%PYTHON%/python.exe createWindowsZip.py" +- "C:/Python27/python.exe createWindowsZip.py" # scripts to run after deployment after_deploy: