Files
ooga_booga/Skins/tko reused/replace.bat
Your Name 63ad31d7fd
Some checks failed
Generate Skin previews, OSK files and per skin documentation / Full CI/CD Pipeline (push) Has been cancelled
Updating skins
2025-10-16 00:09:36 +02:00

23 lines
350 B
Batchfile

@echo off
setlocal
set hspath=%CD%
set osupath="%hspath%\..\"
if exist "%hspath%\%1" (
cd %osupath%
del "drum-*.wav"
del "normal-*.wav"
del "soft-*.wav"
echo Deleted previous hitsounds!
echo Hitsounds folder "%1" found!
cd "%hspath%\%1"
dir
xcopy * %osupath%
echo Copied successfully
) else (
echo Hitsounds folder not found. Check your input!
)