Skip to content

Commit

Permalink
Merge pull request saltstack#33505 from twangboy/fix_build_script
Browse files Browse the repository at this point in the history
Fix build script where pip didn't work
  • Loading branch information
Mike Place committed May 25, 2016
2 parents 4cf40da + 7d78e5d commit a43ffad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkg/windows/build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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%"
Expand Down
4 changes: 2 additions & 2 deletions pkg/windows/req_pip.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pip==8.1.1
setuptools==21.0.0
pip==8.1.2
setuptools==21.2.1

0 comments on commit a43ffad

Please sign in to comment.