(cb)
| 100 | } |
| 101 | |
| 102 | function gitPull (cb) { |
| 103 | const args = ['pull'] |
| 104 | spawn(GIT, args, { cwd: folder, stdio: 'ignore' }, err => { |
| 105 | if (err) err.message += ` (git pull) (${name})` |
| 106 | cb(err) |
| 107 | }) |
| 108 | } |
| 109 | |
| 110 | function npmInstall (cb) { |
| 111 | const args = ['install'] |
nothing calls this directly
no test coverage detected
searching dependent graphs…