6 lines
147 B
Batchfile
6 lines
147 B
Batchfile
@echo off
|
|
if exist .venv\Scripts\python.exe (
|
|
.venv\Scripts\python.exe -m tools.command_builder
|
|
) else (
|
|
python -m tools.command_builder
|
|
)
|