rebuild release branch

This commit is contained in:
huiyadanli
2026-05-30 11:25:27 +00:00
committed by github-actions[bot]
commit 1ee1ae03d2
14030 changed files with 1590564 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
@REM @echo off
set "target1=..\..\AutoPathing"
set "target2=..\..\pathing"
if exist "%target1%" (
mklink /j pathing "%target1%"
) else if exist "%target2%" (
mklink /j pathing "%target2%"
) else (
echo ERROR: Can't find folder "%target1%" or "%target2%"
pause
)