(cb)
| 92 | } |
| 93 | |
| 94 | function gitClone (cb) { |
| 95 | const args = ['clone', '--depth', 1, url, folder] |
| 96 | spawn(GIT, args, { stdio: 'ignore' }, err => { |
| 97 | if (err) err.message += ` (git clone) (${name})` |
| 98 | cb(err) |
| 99 | }) |
| 100 | } |
| 101 | |
| 102 | function gitPull (cb) { |
| 103 | const args = ['pull'] |
nothing calls this directly
no test coverage detected
searching dependent graphs…