12 lines
214 B
Batchfile
12 lines
214 B
Batchfile
@echo off
|
|
setlocal
|
|
cd /d "%~dp0.."
|
|
where py >nul 2>&1
|
|
if errorlevel 1 goto use_python
|
|
py -3 scripts\release_manager.py %*
|
|
exit /b %errorlevel%
|
|
|
|
:use_python
|
|
python scripts\release_manager.py %*
|
|
exit /b %errorlevel%
|