Files
speedy-ben-skins/hardlink-songs-folder.bat
speedy_ben 1c19a7d113
All checks were successful
Generate Skin previews, OSK files and per skin documentation / Full CI/CD Pipeline (push) Successful in 1m51s
Adding skins
2025-10-05 21:16:32 +02:00

16 lines
413 B
Batchfile

@echo off
net session >nul 2>&1
if %errorLevel% neq 0 (
echo Requesting admin privileges...
powershell -Command "Start-Process cmd -ArgumentList '/c \"%~f0\"' -Verb RunAs"
exit /b
)
echo Running robocopy sync as Administrator...
echo.
robocopy "C:\Users\simon\AppData\Local\osu!\Skins" "F:\skins git\speedy-ben-skins\Skins" /MIR /COPYALL /SEC /B /XJ /DCOPY:T /J
echo Robocopy sync completed.
pause