(target: string)
| 48 | |
| 49 | // Same canonicalization the product uses (expands Windows 8.3 short names). |
| 50 | function canonical(target: string): string { |
| 51 | return realpathSync.native(target); |
| 52 | } |
| 53 | |
| 54 | async function git(cwd: string, env: NodeJS.ProcessEnv, args: string[]): Promise<string> { |
| 55 | const { stdout } = await execFileAsync('git', args, { |
no outgoing calls
no test coverage detected