(dir: string)
| 23 | } |
| 24 | |
| 25 | function getGitSha(dir: string): string | null { |
| 26 | return execSafe('git rev-parse HEAD', dir) |
| 27 | } |
| 28 | |
| 29 | function submoduleExists(path: string): boolean { |
| 30 | const gitmodules = join(root, '.gitmodules') |
no test coverage detected