File tree 1 file changed +12
-0
lines changed
1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ REM Is Git for Windows x64 installed?
4
4
if exist " %ProgramW6432% \Git\bin\bash.exe" (
5
5
6
6
echo Using bash from Git for Windows x64
7
+ setlocal
7
8
PATH=%ProgramW6432% \Git\mingw64\bin;%ProgramW6432% \Git\bin
8
9
bash version_git.sh
9
10
exit /b 0
@@ -13,11 +14,22 @@ REM Is Cygwin installed?
13
14
if exist C:\Cygwin\bin\bash.exe (
14
15
15
16
echo Using bash from Cygwin
17
+ setlocal
16
18
PATH=C:\Cygwin\bin
17
19
bash version_git.sh
18
20
exit /b 0
19
21
)
20
22
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
+
21
33
REM No Cygwin or Git for Windows installed
22
34
REM If there is a file assume if is properly generated
23
35
if exist version_git.h (
You can’t perform that action at this time.
0 commit comments