12 lines
153 B
Batchfile
12 lines
153 B
Batchfile
@echo off
|
|
setlocal
|
|
cd /d "%~dp0"
|
|
|
|
if exist ".venv\Scripts\python.exe" (
|
|
".venv\Scripts\python.exe" build_exe.py
|
|
) else (
|
|
py build_exe.py
|
|
)
|
|
|
|
endlocal
|