Skip to content
This repository was archived by the owner on Feb 14, 2026. It is now read-only.

Commit a9385ca

Browse files
authored
Merge pull request #122 from Scoteezy/main
2 parents 5f78365 + b1d0182 commit a9385ca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/claude/utils/path.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { homedir } from "node:os";
22
import { join, resolve } from "node:path";
33

44
export function getProjectPath(workingDirectory: string) {
5-
const projectId = resolve(workingDirectory).replace(/[\\\/\.:]/g, '-');
5+
const projectId = resolve(workingDirectory).replace(/[\\\/\.: _]/g, '-');
66
const claudeConfigDir = process.env.CLAUDE_CONFIG_DIR || join(homedir(), '.claude');
77
return join(claudeConfigDir, 'projects', projectId);
88
}

0 commit comments

Comments
 (0)