MCPcopy Index your code
hub / github.com/codeaashu/claude-code / getShellConfigImpl

Function getShellConfigImpl

src/utils/Shell.ts:139–143  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

137}
138
139async function getShellConfigImpl(): Promise<ShellConfig> {
140 const binShell = await findSuitableShell()
141 const provider = await createBashShellProvider(binShell)
142 return { provider }
143}
144
145// Memoize the entire shell config so it only happens once per session
146export const getShellConfig = memoize(getShellConfigImpl)

Callers

nothing calls this directly

Calls 2

findSuitableShellFunction · 0.85
createBashShellProviderFunction · 0.85

Tested by

no test coverage detected