Release Healer Man 0.1.3

This commit is contained in:
phenom
2026-08-17 17:12:02 -04:00
parent 7e60864e70
commit 5bb170039a
12 changed files with 1569 additions and 23 deletions
+11
View File
@@ -0,0 +1,11 @@
@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%