resetting repo

This commit is contained in:
2025-08-13 22:59:27 +02:00
parent 0c976a4cb6
commit 5dfe706404
1282 changed files with 2596 additions and 1968 deletions

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