mirror of
https://github.com/NaC-L/Mergen.git
synced 2026-05-12 09:40:34 +00:00
12 lines
190 B
Batchfile
12 lines
190 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set "PYTHON_EXE=python"
|
|
where %PYTHON_EXE% >nul 2>nul
|
|
if errorlevel 1 (
|
|
set "PYTHON_EXE=py"
|
|
)
|
|
|
|
%PYTHON_EXE% "%~dp0generate_oracle_vectors.py" %*
|
|
exit /b %errorlevel%
|