(cmd)
| 11 | } |
| 12 | |
| 13 | function exec(cmd) { |
| 14 | cmd = cmd.replace(/\//g, path.sep); |
| 15 | childProcess.execSync(cmd, {stdio: 'inherit'}); |
| 16 | } |
| 17 | |
| 18 | function chmod(path, mode) { |
| 19 | fs.chmodSync(path, mode); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…