(gitDirectory)
| 21 | })(); |
| 22 | |
| 23 | function gitInit(gitDirectory) { |
| 24 | fs.mkdirSync(gitDirectory); |
| 25 | execSync('git init', common.mustNotMutateObjectDeep({ cwd: gitDirectory })); |
| 26 | } |
| 27 | |
| 28 | function makeNonEmptyDirectory(depth, files, folders, dirname, createSymLinks) { |
| 29 | fs.mkdirSync(dirname, common.mustNotMutateObjectDeep({ recursive: true })); |
no test coverage detected
searching dependent graphs…