Commit aec48189 authored by Vincent Driessen's avatar Vincent Driessen

Merge pull request #201 from sjaeckel/feature/msysInstall

make the installer for msysgit search in ~/bin as well
parents a2f53f94 51011ac8
...@@ -63,6 +63,7 @@ goto :End ...@@ -63,6 +63,7 @@ goto :End
:ChkGetopt :ChkGetopt
:: %1 is getopt.exe :: %1 is getopt.exe
if exist "%GIT_HOME%\bin\%1" goto :EOF if exist "%GIT_HOME%\bin\%1" goto :EOF
if exist "%USERPROFILE%\bin\%1" goto :EOF
if exist "%~f$PATH:1" goto :EOF if exist "%~f$PATH:1" goto :EOF
echo %GIT_HOME%\bin\%1 not found.>&2 echo %GIT_HOME%\bin\%1 not found.>&2
echo You have to install this file manually. See the GitFlow README. echo You have to install this file manually. See the GitFlow README.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment