From 24606afed24c5f55f99030ce0664545a98e90166 Mon Sep 17 00:00:00 2001 From: csh Date: Tue, 23 Dec 2025 10:39:20 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Escape=20parentheses=20in=20sync?= =?UTF-8?q?=5Fstandards=20output?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/sync_standards.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/sync_standards.bat b/scripts/sync_standards.bat index 6504abb..aca801e 100644 --- a/scripts/sync_standards.bat +++ b/scripts/sync_standards.bat @@ -61,12 +61,12 @@ if "%SYNC_STANDARDS_INNER%"=="" ( set "AGENTS_SRC=%AGENTS_SRC_ROOT%\%AGENTS_NS%" if not exist "%AGENTS_SRC%" ( - rem Backward-compatible fallback: older snapshots used \.agents\* directly. + rem Backward-compatible fallback: older snapshots used ^\.agents\* directly. if exist "%AGENTS_SRC_ROOT%\index.md" if exist "%AGENTS_SRC_ROOT%\auth.md" ( set "AGENTS_SRC=%AGENTS_SRC_ROOT%" ) else ( echo ERROR: Standards snapshot not found at "%AGENTS_SRC%". - echo Hint: set AGENTS_NS to one of the subdirs under "%AGENTS_SRC_ROOT%" (e.g. tsl/cpp). + echo Hint: set AGENTS_NS to one of the subdirs under "%AGENTS_SRC_ROOT%" ^(e.g. tsl/cpp^). exit /b 1 ) )