From 3b14f98994683f8be5aeb65dc4248e427ee8bb17 Mon Sep 17 00:00:00 2001 From: catlog22 Date: Sun, 8 Feb 2026 09:43:02 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=AD=A3=E6=A3=80=E6=9F=A5?= =?UTF-8?q?=E5=AE=89=E8=A3=85=E7=8A=B6=E6=80=81=E7=9A=84=E8=B7=AF=E5=BE=84?= =?UTF-8?q?=E5=8F=98=E9=87=8F=EF=BC=8C=E7=A1=AE=E4=BF=9D=E6=AD=A3=E7=A1=AE?= =?UTF-8?q?=E5=BC=95=E7=94=A8=E7=94=A8=E6=88=B7=E7=9B=AE=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ccw/src/core/routes/status-routes.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ccw/src/core/routes/status-routes.ts b/ccw/src/core/routes/status-routes.ts index 14c27037..abd39312 100644 --- a/ccw/src/core/routes/status-routes.ts +++ b/ccw/src/core/routes/status-routes.ts @@ -52,13 +52,13 @@ function checkCcwInstallStatus(): { } const workflowsInstalled = existsSync(workflowsDir) && missingFiles.length === 0; - const installed = existsSync(claudeDir) && workflowsInstalled; + const installed = existsSync(ccwDir) && workflowsInstalled; return { installed, workflowsInstalled, missingFiles, - installPath: claudeDir + installPath: ccwDir }; }