Skip to content

Commit fb8f479

Browse files
committed
Detect Cygwin64 to get the version from git
1 parent b0f5584 commit fb8f479

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

version_git.bat

+12
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ REM Is Git for Windows x64 installed?
44
if exist "%ProgramW6432%\Git\bin\bash.exe" (
55

66
echo Using bash from Git for Windows x64
7+
setlocal
78
PATH=%ProgramW6432%\Git\mingw64\bin;%ProgramW6432%\Git\bin
89
bash version_git.sh
910
exit /b 0
@@ -13,11 +14,22 @@ REM Is Cygwin installed?
1314
if exist C:\Cygwin\bin\bash.exe (
1415

1516
echo Using bash from Cygwin
17+
setlocal
1618
PATH=C:\Cygwin\bin
1719
bash version_git.sh
1820
exit /b 0
1921
)
2022

23+
REM Is Cygwin64 installed?
24+
if exist C:\Cygwin64\bin\bash.exe (
25+
26+
echo Using bash from Cygwin64
27+
setlocal
28+
PATH=C:\Cygwin64\bin
29+
bash version_git.sh
30+
exit /b 0
31+
)
32+
2133
REM No Cygwin or Git for Windows installed
2234
REM If there is a file assume if is properly generated
2335
if exist version_git.h (

0 commit comments

Comments
 (0)