Fix build script where pip wouldn't work

This commit is contained in:
twangboy 2016-05-25 17:38:39 +00:00
parent 4cf40da7d7
commit 7d78e5d612
2 changed files with 4 additions and 4 deletions

View File

@ -26,10 +26,10 @@ if [%1]==[] (
)
:: Create Build Environment
cmd /c powershell -ExecutionPolicy RemoteSigned -File "%CurDir%build_env.ps1" -Silent
PowerShell.exe -ExecutionPolicy RemoteSigned -File "%CurDir%build_env.ps1" -Silent
:: Install Current Version of salt
cmd /c "%PyDir%\python.exe %SrcDir%\setup.py" install --force
"%PyDir%\python.exe" "%SrcDir%\setup.py" install --force
:: Build the Salt Package
call "%CurDir%build_pkg.bat" "%Version%"

View File

@ -1,2 +1,2 @@
pip==8.1.1
setuptools==21.0.0
pip==8.1.2
setuptools==21.2.1