js: CD-Aware-AutoGather: 同步订阅的地图追踪任务,执行采集,并管理刷新时间 (#967)

This commit is contained in:
Patrick-Ze
2025-06-03 00:40:19 +08:00
committed by GitHub
parent f6d668cd82
commit acd8ca4a36
10 changed files with 758 additions and 2 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
)