mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-07 02:04:11 +08:00
Remove incorrect path separator conversion that caused directory creation issues on Linux/WSL platforms. The function was converting forward slashes to backslashes, which are treated as literal filename characters on Unix systems rather than path separators. Changes: - Remove manual path normalization in getProjectSettingsPath() - Rely on Node.js path.join() for cross-platform compatibility - Fix affects both hooks-routes.ts and mcp-routes.ts Impact: - Linux/WSL: Fixes incorrect directory creation - Windows: No behavior change, maintains correct functionality Fixes project-level hook settings being saved to wrong location when using Dashboard frontend on Linux/WSL systems.