summaryrefslogtreecommitdiff
path: root/deps/node/deps/npm/lib/doctor/get-git-path.js
blob: 5b00e9d54e6bc9ba0b8e8646d8ef41ca4f8936da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
var log = require('npmlog')
var which = require('which')

function getGitPath (cb) {
  var tracker = log.newItem('getGitPath', 1)
  tracker.info('getGitPath', 'Finding git in your PATH')
  which('git', function (err, path) {
    tracker.finish()
    cb(err, path)
  })
}

module.exports = getGitPath