(args: string[], cwd: string)
| 105 | |
| 106 | /** Run a git command in a directory (for test setup only) */ |
| 107 | export function gitInDir(args: string[], cwd: string): string { |
| 108 | return execFileSync('git', args, { cwd, encoding: 'utf-8', stdio: 'pipe' }).trim(); |
| 109 | } |
no outgoing calls
searching dependent graphs…