On May 1, 2008, at 11:18 PM, Peter Harris wrote:
On Thu, May 1, 2008 at 4:03 PM, Scott Graham <[EMAIL PROTECTED]>
wrote:
I'm having problems getting gvim to be launched properly. The only
thing I've modified from
http://msysgit.googlecode.com/files/Git-1.5.5-preview20080413.exe
is to change the exit to exit /b in git.cmd.
git.cmd stomps the path. Try changing the line
for /F "delims=" %%I in ("%~dp0..") do set path=%%~fI\bin;%%~fI\mingw
\bin
to
for /F "delims=" %%I in ("%~dp0..") do set path=%%~fI\bin;%%~fI\mingw
\bin;%PATH%
(I hope that doesn't wrap too badly)
Should git.cmd included in the installer modified in this way?
Steffen