1
0
mirror of https://github.com/danog/gift.git synced 2024-11-26 20:04:47 +01:00

Fix the order of arguments in git.cmd() (#86)

This commit is contained in:
Martin Kolárik 2016-04-28 04:40:20 +02:00 committed by Luke Plaster
parent 576e8d04f4
commit 687feb770e

View File

@ -25,7 +25,7 @@ module.exports = Git = (git_dir, dot_git, git_options) ->
# Public: Passthrough for raw git commands # Public: Passthrough for raw git commands
# #
git.cmd = (command, options, args, callback, encoding) -> 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 # Public: stream results of git command
# #