9 lines
347 B
Batchfile
9 lines
347 B
Batchfile
@echo off
|
|
REM push-characters.bat — commit and push the character manager changes to Gitea.
|
|
REM Extract the zip over Y:\newbury-exhibit-v2 first, then run this.
|
|
cd /d Y:\newbury-exhibit-v2
|
|
git add -A
|
|
git commit -m "Character manager: asset uploads, per-ghost model/colour/opacity overrides, face+torso texture decals"
|
|
git push origin main
|
|
pause
|