Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.js « utils « lib - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f8131aa756a77a19da4b9ae1a87faab86e87483 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45

// handle some git configuration for windows

exports.spawn = spawnGit
exports.chainableExec = chainableExec
exports.whichAndExec = whichAndExec

var exec = require("child_process").execFile
  , spawn = require("child_process").spawn
  , npm = require("../npm.js")
  , which = require("which")
  , git = npm.config.get("git")

function prefixGitArgs() {
  return process.platform === "win32" ? ["-c", "core.longpaths=true"] : []
}

function execGit(args, options, cb) {
  return exec(git, prefixGitArgs().concat(args || []), options, cb)
}

function spawnGit(args, options, cb) {
  return spawn(git, prefixGitArgs().concat(args || []), options)
}

function chainableExec() {
  var args = Array.prototype.slice.call(arguments)
  return [gitExec].concat(args)
}

function whichGit(cb) {
  return which(git, cb)
}

function whichAndExec(args, options, cb) {
  // check for git
  whichGit(function (err) {
    if (err) {
      err.code = "ENOGIT"
      return cb(err)
    }

    execGit(args, options, cb)
  })
}