change to us cmd to launch git on Windows

This commit is contained in:
anurse 2015-04-29 16:08:43 -07:00
parent e54a3b61c0
commit 727924a8f2
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
default gitFolder=''
exec program='git' commandline='${gitCommand}' workingdir='${gitFolder}'
-// Use cmd to invoke git so that people who have git as a 'cmd'
exec program='cmd' commandline='/C git ${gitCommand}' workingdir='${gitFolder}' if='!IsMono'
exec program='git' commandline='${gitCommand}' workingdir='${gitFolder}' if='IsMono'