From 10347efa734be5fcbeed70bfc04ea3831bbb240f Mon Sep 17 00:00:00 2001 From: "tao.chen" <93983997+taochen-ct@users.noreply.github.com> Date: Fri, 7 Aug 2026 15:08:36 +0800 Subject: [PATCH] update: exclude hidden dir --- runtime/src/runtime/process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/runtime/process.py b/runtime/src/runtime/process.py index cbe9600..05747b6 100644 --- a/runtime/src/runtime/process.py +++ b/runtime/src/runtime/process.py @@ -522,7 +522,7 @@ async def scan_workspaces() -> None: if not WORKSPACES_ROOT.exists(): return try: - entries = os.listdir(WORKSPACES_ROOT) + entries = [f for f in os.listdir(WORKSPACES_ROOT) if not f.startswith('.')] except Exception as e: logger.error(f"scan workspace failed: {e}") return