Merge pull request #33505 from twangboy/fix_build_script

Fix build script where pip didn't work
This commit is contained in:
Mike Place 2016-05-25 11:15:27 -07:00
commit a43ffadcb7
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