Skip to content

Commit

Permalink
call function
Browse files Browse the repository at this point in the history
  • Loading branch information
jlord committed Sep 3, 2015
1 parent a57a7ab commit ee436a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/spawn-git.js
Expand Up @@ -9,7 +9,7 @@ module.exports = function spawnGit(command, options, callback) {
callback = options
options = null
}
if (os.platform === 'win32') {
if (os.platform() === 'win32') {
exec('"' + winGit + '" ' + command, options, callback)
} else {
exec("git " + command, options, callback)
Expand Down

0 comments on commit ee436a2

Please sign in to comment.