v1.0.2 - fixed cashouts

This commit is contained in:
2026-05-10 15:25:21 -05:00
parent 63a0c688f0
commit 28d2f8102d
4 changed files with 46 additions and 59 deletions
+15
View File
@@ -0,0 +1,15 @@
@echo off
@echo off
cd /d "C:\Users\myron\Downloads\tomgames"
set /p MSG="Commit message (e.g. v1.0.2 - what changed): "
if "%MSG%"=="" (
echo No message entered. Aborting.
pause
exit /b
)
git add -A
git commit -m "%MSG%"
git push origin main
echo.
echo Done! Check https://github.com/myronblair/tomtomgames-app
pause