1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
REM execute me from the main directory
rmdir /S dist /Q
rmdir /S build /Q
CALL venv\Scripts\activate.bat
rem git restore *
rem git switch master
rem git pull
venv\Scripts\python -m pip install -U pip
venv\Scripts\python -m pip install wheel
venv\Scripts\python -m pip install -U pyinstaller
venv\Scripts\python -m pip install -U pyinstaller-hooks-contrib
CALL C:\Users\daniel\Documents\sign_bootloader.bat
venv\Scripts\pip3.exe install -r requirements.txt -U
venv\Scripts\python.exe scripts\make_win_release.py
|