Files
Skins/hardlink-songs-folder.bat
Schoki e9493842e2
Some checks failed
Generate Skin previews, OSK files and per skin documentation / Full CI/CD Pipeline (push) Failing after 4s
Adding skin
2025-11-22 22:42:58 +01:00

16 lines
418 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 "/home/schoki/Documents/osu!/playing/skins/" "/home/schoki/Documents/osu!/Skins/" /MIR /COPYALL /SEC /B /XJ /DCOPY:T /J
echo Robocopy sync completed.
pause