21 lines
311 B
Batchfile
21 lines
311 B
Batchfile
|
@echo off
|
|||
|
setlocal EnableDelayedExpansion
|
|||
|
|
|||
|
set "RESET=[0m"
|
|||
|
set "BLUE=[1;34m"
|
|||
|
set "GREEN=[1;32m"
|
|||
|
set "RED=[1;31m"
|
|||
|
set "YELLOW=[1;33m"
|
|||
|
set "WHITE=[1;37m"
|
|||
|
|
|||
|
echo %BLUE%Buiding app%RESET%
|
|||
|
|
|||
|
cd ./appmanager/
|
|||
|
|
|||
|
pyinstaller --onefile projects.py --name "Projects Manager"
|
|||
|
|
|||
|
cd ..
|
|||
|
|
|||
|
echo %GREEN%App built%RESET%
|
|||
|
|
|||
|
pause
|