py_projects/buildapp.bat
2024-01-17 10:23:07 +00:00

21 lines
311 B
Batchfile
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@echo off
setlocal EnableDelayedExpansion
set "RESET="
set "BLUE="
set "GREEN="
set "RED="
set "YELLOW="
set "WHITE="
echo %BLUE%Buiding app%RESET%
cd ./appmanager/
pyinstaller --onefile projects.py --name "Projects Manager"
cd ..
echo %GREEN%App built%RESET%
pause