(cwd: string, ...args: string[])
| 26 | import { ToolHandler } from '../src/mcp/tools'; |
| 27 | |
| 28 | function git(cwd: string, ...args: string[]): void { |
| 29 | execFileSync('git', args, { cwd, stdio: ['ignore', 'ignore', 'ignore'] }); |
| 30 | } |
| 31 | |
| 32 | /** realpath so macOS /var → /private/var symlinking doesn't break equality. */ |
| 33 | function real(p: string): string { |
no outgoing calls
no test coverage detected