Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/utils/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ export const getGlobalClaudeFile = memoize((): string => {
}

const filename = `.claude${fileSuffixForOauthConfig()}.json`
return join(process.env.CLAUDE_CONFIG_DIR || homedir(), filename)
return join(
process.env.CLAUDE_CONFIG_DIR || getClaudeConfigHomeDir(),
filename,
)
Comment thread
p2p3p marked this conversation as resolved.
})

const hasInternetAccess = memoize(async (): Promise<boolean> => {
Expand Down