mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #33505 from twangboy/fix_build_script
Fix build script where pip didn't work
This commit is contained in:
commit
a43ffadcb7
2 changed files with 4 additions and 4 deletions
|
@ -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%"
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
pip==8.1.1
|
||||
setuptools==21.0.0
|
||||
pip==8.1.2
|
||||
setuptools==21.2.1
|
||||
|
|
Loading…
Add table
Reference in a new issue