Initial commit
Some checks failed
CI/CD Pipeline / Full CI/CD Pipeline (push) Failing after 0s

This commit is contained in:
2025-06-08 13:25:19 +02:00
commit 4a5e0b0c91
641 changed files with 2617 additions and 0 deletions

15
hardlink-songs-folder.bat Normal file
View File

@@ -0,0 +1,15 @@
@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 "E:\osu!\skins" "D:\git\skins\Skins" /MIR /COPYALL /SEC /B /XJ /DCOPY:T /J
echo Robocopy sync completed.
pause