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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2014-06-28 02:28:57 +0400
committerisaacs <i@izs.me>2014-06-28 02:28:57 +0400
commit4994c1c1d750f2ac9b0e43708aaaa1d33da80326 (patch)
treea00bfc58ae94e292187a263b5dbbef26dfc2bb26
parent8a3571ee20b73f9605cb4b0c4bbb7a8c2cbd6afd (diff)
typo in lib/utils/git.js
-rw-r--r--lib/utils/git.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils/git.js b/lib/utils/git.js
index 6f8131aa7..7e2015193 100644
--- a/lib/utils/git.js
+++ b/lib/utils/git.js
@@ -25,7 +25,7 @@ function spawnGit(args, options, cb) {
function chainableExec() {
var args = Array.prototype.slice.call(arguments)
- return [gitExec].concat(args)
+ return [execGit].concat(args)
}
function whichGit(cb) {