From 687feb770ede1878ee9c8a47d0af4a4420c8b44b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kol=C3=A1rik?= Date: Thu, 28 Apr 2016 04:40:20 +0200 Subject: [PATCH] Fix the order of arguments in git.cmd() (#86) --- src/git.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git.coffee b/src/git.coffee index 9ae188a..3321217 100644 --- a/src/git.coffee +++ b/src/git.coffee @@ -25,7 +25,7 @@ module.exports = Git = (git_dir, dot_git, git_options) -> # Public: Passthrough for raw git commands # git.cmd = (command, options, args, callback, encoding) -> - git command, options, args, encoding, callback + git command, options, args, callback, encoding # Public: stream results of git command #