-
Notifications
You must be signed in to change notification settings - Fork 1
/
setenv.bat
555 lines (507 loc) · 18.5 KB
/
setenv.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
@echo off
setlocal enabledelayedexpansion
@rem only for interactive debugging
set _DEBUG=0
@rem #########################################################################
@rem ## Environment setup
set _EXITCODE=0
call :env
if not %_EXITCODE%==0 goto end
call :args %*
if not %_EXITCODE%==0 goto end
@rem #########################################################################
@rem ## Main
if %_HELP%==1 (
call :help
exit /b !_EXITCODE!
)
set _PYTHON_PATH=
set _GIT_PATH=
@rem GraalVM 21.3 and newer target Java 11/17
call :java 17
if not %_EXITCODE%==0 goto end
call :java 21
if not %_EXITCODE%==0 goto end
call :python3
if not %_EXITCODE%==0 goto end
call :msvs
if not %_EXITCODE%==0 goto end
@rem call :sdk
@rem if not %_EXITCODE%==0 goto end
call :git
if not %_EXITCODE%==0 goto end
call :vscode
if not %_EXITCODE%==0 (
@rem optional
set _EXITCODE=0
)
goto end
@rem #########################################################################
@rem ## Subroutines
@rem output parameters: _DEBUG_LABEL, _ERROR_LABEL, _WARNING_LABEL
:env
set _BASENAME=%~n0
set "_ROOT_DIR=%~dp0"
call :env_colors
set _DEBUG_LABEL=%_NORMAL_BG_CYAN%[%_BASENAME%]%_RESET%
set _ERROR_LABEL=%_STRONG_FG_RED%Error%_RESET%:
set _WARNING_LABEL=%_STRONG_FG_YELLOW%Warning%_RESET%:
goto :eof
:env_colors
@rem ANSI colors in standard Windows 10 shell
@rem see https://gist.github.com/mlocati/#file-win10colors-cmd
@rem normal foreground colors
set _NORMAL_FG_BLACK=[30m
set _NORMAL_FG_RED=[31m
set _NORMAL_FG_GREEN=[32m
set _NORMAL_FG_YELLOW=[33m
set _NORMAL_FG_BLUE=[34m
set _NORMAL_FG_MAGENTA=[35m
set _NORMAL_FG_CYAN=[36m
set _NORMAL_FG_WHITE=[37m
@rem normal background colors
set _NORMAL_BG_BLACK=[40m
set _NORMAL_BG_RED=[41m
set _NORMAL_BG_GREEN=[42m
set _NORMAL_BG_YELLOW=[43m
set _NORMAL_BG_BLUE=[44m
set _NORMAL_BG_MAGENTA=[45m
set _NORMAL_BG_CYAN=[46m
set _NORMAL_BG_WHITE=[47m
@rem strong foreground colors
set _STRONG_FG_BLACK=[90m
set _STRONG_FG_RED=[91m
set _STRONG_FG_GREEN=[92m
set _STRONG_FG_YELLOW=[93m
set _STRONG_FG_BLUE=[94m
set _STRONG_FG_MAGENTA=[95m
set _STRONG_FG_CYAN=[96m
set _STRONG_FG_WHITE=[97m
@rem strong background colors
set _STRONG_BG_BLACK=[100m
set _STRONG_BG_RED=[101m
set _STRONG_BG_GREEN=[102m
set _STRONG_BG_YELLOW=[103m
set _STRONG_BG_BLUE=[104m
@rem we define _RESET in last position to avoid crazy console output with type command
set _BOLD=[1m
set _UNDERSCORE=[4m
set _INVERSE=[7m
set _RESET=[0m
goto :eof
@rem input parameter: %*
@rem output parameters: _BASH, _HELP, _VERBOSE
:args
set _BASH=0
set _HELP=0
set _VERBOSE=0
:args_loop
set "__ARG=%~1"
if not defined __ARG goto args_done
if "%__ARG:~0,1%"=="-" (
@rem option
if "%__ARG%"=="-bash" ( set _BASH=1
) else if "%__ARG%"=="-debug" ( set _DEBUG=1
) else if "%__ARG%"=="-help" ( set _HELP=1
) else if "%__ARG%"=="-verbose" ( set _VERBOSE=1
) else (
echo %_ERROR_LABEL% Unknown option "%__ARG%" 1>&2
set _EXITCODE=1
goto args_done
)
) else (
@rem subcommand
if "%__ARG%"=="help" ( set _HELP=1
) else (
echo %_ERROR_LABEL% Unknown subcommand "%__ARG%" 1>&2
set _EXITCODE=1
goto args_done
)
)
shift
goto args_loop
:args_done
call :drive_name "%_ROOT_DIR%"
if not %_EXITCODE%==0 goto :eof
if %_DEBUG%==1 (
echo %_DEBUG_LABEL% Options : _BASH=%_BASH% _HELP=%_HELP% _VERBOSE=%_VERBOSE% 1>&2
echo %_DEBUG_LABEL% Subcommands: _HELP=%_HELP% 1>&2
echo %_DEBUG_LABEL% Variables : _DRIVE_NAME=%_DRIVE_NAME% 1>&2
)
goto :eof
@rem input parameter: %1: path to be substituted
@rem output parameter: _DRIVE_NAME (2 characters: letter + ':')
:drive_name
set "__GIVEN_PATH=%~1"
@rem remove trailing path separator if present
if "%__GIVEN_PATH:~-1,1%"=="\" set "__GIVEN_PATH=%__GIVEN_PATH:~0,-1%"
@rem https://serverfault.com/questions/62578/how-to-get-a-list-of-drive-letters-on-a-system-through-a-windows-shell-bat-cmd
set __DRIVE_NAMES=F:G:H:I:J:K:L:M:N:O:P:Q:R:S:T:U:V:W:X:Y:Z:
for /f %%i in ('wmic logicaldisk get deviceid ^| findstr :') do (
set "__DRIVE_NAMES=!__DRIVE_NAMES:%%i=!"
)
if %_DEBUG%==1 echo %_DEBUG_LABEL% __DRIVE_NAMES=%__DRIVE_NAMES% ^(WMIC^) 1>&2
if not defined __DRIVE_NAMES (
echo %_ERROR_LABEL% No more free drive name 1>&2
set _EXITCODE=1
goto :eof
)
for /f "tokens=1,2,*" %%f in ('subst') do (
set "__SUBST_DRIVE=%%f"
set "__SUBST_DRIVE=!__SUBST_DRIVE:~0,2!"
set "__SUBST_PATH=%%h"
if "!__SUBST_DRIVE!"=="!__GIVEN_PATH:~0,2!" (
set _DRIVE_NAME=!__SUBST_DRIVE:~0,2!
if %_DEBUG%==1 ( echo %_DEBUG_LABEL% Select drive !_DRIVE_NAME! for which a substitution already exists 1>&2
) else if %_VERBOSE%==1 ( echo Select drive !_DRIVE_NAME! for which a substitution already exists 1>&2
)
goto :eof
) else if "!__SUBST_PATH!"=="!__GIVEN_PATH!" (
set "_DRIVE_NAME=!__SUBST_DRIVE!"
if %_DEBUG%==1 ( echo %_DEBUG_LABEL% Select drive !_DRIVE_NAME! for which a substitution already exists 1>&2
) else if %_VERBOSE%==1 ( echo Select drive !_DRIVE_NAME! for which a substitution already exists 1>&2
)
goto :eof
)
)
for /f "tokens=1,2,*" %%i in ('subst') do (
set __USED=%%i
call :drive_names "!__USED:~0,2!"
)
if %_DEBUG%==1 echo %_DEBUG_LABEL% __DRIVE_NAMES=%__DRIVE_NAMES% ^(SUBST^) 1>&2
set "_DRIVE_NAME=!__DRIVE_NAMES:~0,2!"
if /i "%_DRIVE_NAME%"=="%__GIVEN_PATH:~0,2%" goto :eof
if %_DEBUG%==1 ( echo %_DEBUG_LABEL% subst "%_DRIVE_NAME%" "%__GIVEN_PATH%" 1>&2
) else if %_VERBOSE%==1 ( echo Assign drive %_DRIVE_NAME% to path "!__GIVEN_PATH:%USERPROFILE%=%%USERPROFILE%%!" 1>&2
)
subst "%_DRIVE_NAME%" "%__GIVEN_PATH%"
if not %ERRORLEVEL%==0 (
echo %_ERROR_LABEL% Failed to assign drive %_DRIVE_NAME% to path "!__GIVEN_PATH:%USERPROFILE%=%%USERPROFILE%%!" 1>&2
set _EXITCODE=1
goto :eof
)
goto :eof
@rem input parameter: %1=Used drive name
@rem output parameter: __DRIVE_NAMES
:drive_names
set "__USED_NAME=%~1"
set "__DRIVE_NAMES=!__DRIVE_NAMES:%__USED_NAME%=!"
goto :eof
:help
if %_VERBOSE%==1 (
set __BEG_P=%_STRONG_FG_CYAN%
set __BEG_O=%_STRONG_FG_GREEN%
set __BEG_N=%_NORMAL_FG_YELLOW%
set __END=%_RESET%
) else (
set __BEG_P=
set __BEG_O=
set __BEG_N=
set __END=
)
echo Usage: %__BEG_O%%_BASENAME% { ^<option^> ^| ^<subcommand^> }%__END%
echo.
echo %__BEG_P%Options:%__END%
echo %__BEG_O%-bash%__END% start Git bash shell instead of Windows command prompt
echo %__BEG_O%-debug%__END% print commands executed by this script
echo %__BEG_O%-verbose%__END% print progress messages
echo.
echo %__BEG_P%Subcommands:%__END%
echo %__BEG_O%help%__END% print this help message
goto :eof
@rem input parameter: %1=Java version
@rem output parameter: _JAVA_HOME
:java
set __JAVA_VERSION=%~1
set __JAVA_DISTRO=graalvm-ce
set _JAVA_HOME=
set __JAVAC_CMD=
for /f "delims=" %%f in ('where javac.exe 2^>NUL') do set "__JAVAC_CMD=%%f"
if defined __JAVAC_CMD (
for /f "delims=" %%i in ("%__JAVAC_CMD%") do set "__GRAAL_BIN_DIR=%%~dpi"
for /f "delims=" %%f in ("!__GRAAL_BIN_DIR!\.") do set "_JAVA_HOME=%%~dpf"
if %_DEBUG%==1 echo %_DEBUG_LABEL% Using path of javac executable found in PATH 1>&2
@rem ) else if defined GRAALVM_HOME (
@rem set "_GRAALVM_HOME=%GRAALVM_HOME%"
@rem if %_DEBUG%==1 echo %_DEBUG_LABEL% Using environment variable GRAALVM_HOME 1>&2
) else (
set __PATH=C:\opt
for /f %%f in ('dir /ad /b "!__PATH!\jdk-%__JAVA_DISTRO%-%__JAVA_VERSION%*" 2^>NUL') do set "_JAVA_HOME=!__PATH!\%%f"
if not defined _JAVA_HOME (
set "__PATH=%ProgramFiles%"
for /f "delims=" %%f in ('dir /ad /b "!__PATH!\jdk-%__JAVA_DISTRO%-%__JAVA_VERSION%*" 2^>NUL') do set "_GRAALVM_HOME=!__PATH!\%%f"
)
)
if not exist "%_JAVA_HOME%\bin\javac.exe" (
echo %_ERROR_LABEL% Executable javac.exe not found ^(%_JAVA_HOME%^) 1>&2
set _EXITCODE=1
goto :eof
)
@rem if not exist "%_JAVA_HOME%\bin\polyglot.cmd" (
@rem echo %_ERROR_LABEL% Executable polyglot.cmd not found ^(%_JAVA_HOME%^) 1>&2
@rem set _EXITCODE=1
@rem goto :eof
@rem )
set "_JAVA%__JAVA_VERSION%_HOME=%_JAVA_HOME%"
goto :eof
@rem output parameters: _PYTHON_HOME, _PYTHON_PATH
:python3
set _PYTHON_HOME=
set _PYTHON_PATH=
set __PYTHON_CMD=
for /f "delims=" %%f in ('where python.exe 2^>NUL') do set "__PYTHON_CMD=%%f"
if defined __PYTHON_CMD (
if not "!__PYTHON_CMD:WindowsApps=!"=="%__PYTHON_CMD%" (
echo %_WARNING_LABEL% Ignore Windows installed Python 1>&2
set __PYTHON_CMD=
)
)
if defined __PYTHON_CMD (
for /f "delims=" %%f in ("%__PYTHON_CMD%") do set "_PYTHON_HOME=%%~dpf"
set "_PYTHON_HOME=!_PYTHON_HOME:~0,-1!"
if %_DEBUG%==1 echo %_DEBUG_LABEL% Using path of Python executable found in PATH 1>&2
@rem keep _PYTHON_PATH undefined since executable already in path
goto :eof
) else if defined PYTHON_HOME (
set "_PYTHON_HOME=%PYTHON_HOME%"
if %_DEBUG%==1 echo %_DEBUG_LABEL% Using environment variable PYTHON_HOME 1>&2
) else (
set __PATH=C:\opt
if exist "!__PATH!\Python\" ( set _PYTHON_HOME=!__PATH!\Python
) else (
for /f "delims=" %%f in ('dir /ad /b "!__PATH!\Python-3*" 2^>NUL') do set "_PYTHON_HOME=!__PATH!\%%f"
if not defined _PYTHON_HOME (
set "__PATH=%ProgramFiles%"
for /f "delims=" %%f in ('dir /ad /b "!__PATH!\Python-3*" 2^>NUL') do set "_PYTHON_HOME=!__PATH!\%%f"
)
)
)
if not exist "%_PYTHON_HOME%\python.exe" (
echo %_ERROR_LABEL% Python executable not found ^("%_PYTHON_HOME%"^) 1>&2
set _EXITCODE=1
goto :eof
)
if not exist "%_PYTHON_HOME%\Scripts\pylint.exe" (
echo %_ERROR_LABEL% Pylint executable not found ^("%_PYTHON_HOME%"^) 1>&2
echo ^(execute command: python -m pip install pylint^) 1>&2
set _EXITCODE=1
goto :eof
)
@rem prepend to ignore Windows installed Python
set "_PYTHON_PATH=%_PYTHON_HOME%;%_PYTHON_HOME%\Scripts;"
goto :eof
@rem output parameters: _MSVC_HOME, _MSVC_HOME
@rem Visual Studio 2017/2019
:msvs
set _MSVC_HOME=
set _MSVS_HOME=
set __MSVS_VERSION=2019
for /f "delims=" %%f in ("%ProgramFiles(x86)%\Microsoft Visual Studio\%__MSVS_VERSION%") do set "_MSVS_HOME=%%f"
if not exist "%_MSVS_HOME%\" (
echo %_ERROR_LABEL% Could not find installation directory for Microsoft Visual Studio %__MSVS_VERSION% 1>&2
set _EXITCODE=1
goto :eof
)
set __VC_BATCH_FILE=
for /f "delims=" %%f in ('where /r "%_MSVS_HOME%" vcvarsall.bat') do set "__VC_BATCH_FILE=%%f"
if not exist "%__VC_BATCH_FILE%" (
echo %_ERROR_LABEL% Could not find file vcvarsall.bat in directory "%_MSVS_HOME%" 1>&2
set _EXITCODE=1
goto :eof
)
if "%__VC_BATCH_FILE:Community=%"=="%__VC_BATCH_FILE%" ( set "_MSVC_HOME=%_MSVS_HOME%\BuildTools\VC"
) else ( set "_MSVC_HOME=%_MSVS_HOME%\Community\VC"
)
goto :eof
@rem output parameters: _SDK_HOME, _SDK_PATH
@rem native-image dependency
:sdk
set _SDK_HOME=
set _SDK_PATH=
for /f "delims=" %%f in ("%ProgramFiles%\Microsoft SDKs\Windows\v7.1") do set "_SDK_HOME=%%f"
if not exist "%_SDK_HOME%" (
echo %_ERROR_LABEL% Could not find installation directory for Microsoft Windows SDK 7.1 1>&2
echo ^(see https://github.com/oracle/graal/blob/master/compiler/README.md^) 1>&2
set _EXITCODE=1
goto :eof
)
if "%PROCESSOR_ARCHITECTURE%"=="AMD64" ( set __SDK_BIN=bin\x64
) else ( set __SDK_BIN=bin
)
set "_SDK_PATH=;%_SDK_HOME%\%__SDK_BIN%"
goto :eof
@rem output parameters: _GIT_HOME, _GIT_PATH
:git
set _GIT_HOME=
set _GIT_PATH=
set __GIT_CMD=
for /f "delims=" %%f in ('where git.exe 2^>NUL') do set "__GIT_CMD=%%f"
if defined __GIT_CMD (
for /f "delims=" %%i in ("%__GIT_CMD%") do set "__GIT_BIN_DIR=%%~dpi"
for /f "delims=" %%f in ("!__GIT_BIN_DIR!\.") do set "_GIT_HOME=%%~dpf"
set "_GIT_HOME=!_GIT_HOME:~0,-1!"
@rem Executable git.exe is present both in bin\ and \mingw64\bin\
if not "!_GIT_HOME:mingw=!"=="!_GIT_HOME!" (
for /f "delims=" %%f in ("!_GIT_HOME!\.") do set "_GIT_HOME=%%~dpf"
)
if %_DEBUG%==1 echo %_DEBUG_LABEL% Using path of Git executable found in PATH 1>&2
@rem keep _GIT_PATH undefined since executable already in path
goto :eof
) else if defined GIT_HOME (
set "_GIT_HOME=%GIT_HOME%"
if %_DEBUG%==1 echo %_DEBUG_LABEL% Using environment variable GIT_HOME 1>&2
) else (
set __PATH=C:\opt
if exist "!__PATH!\Git\" ( set "_GIT_HOME=!__PATH!\Git"
) else (
for /f "delims=" %%f in ('dir /ad /b "!__PATH!\Git*" 2^>NUL') do set "_GIT_HOME=!__PATH!\%%f"
if not defined _GIT_HOME (
set "__PATH=%ProgramFiles%"
for /f "delims=" %%f in ('dir /ad /b "!__PATH!\Git*" 2^>NUL') do set "_GIT_HOME=!__PATH!\%%f"
)
)
if defined _GIT_HOME (
if %_DEBUG%==1 echo %_DEBUG_LABEL% Using default Git installation directory "!_GIT_HOME!" 1>&2
)
)
if not exist "%_GIT_HOME%\bin\git.exe" (
echo %_ERROR_LABEL% Git executable not found ^("%_GIT_HOME%"^) 1>&2
set _EXITCODE=1
goto :eof
)
set "_GIT_PATH=;%_GIT_HOME%\bin;%_GIT_HOME%\usr\bin;%_GIT_HOME%\mingw64\bin"
goto :eof
@rem output parameters: _VSCODE_HOME, _VSCODE_PATH
:vscode
set _VSCODE_HOME=
set _VSCODE_PATH=
set __CODE_CMD=
for /f "delims=" %%f in ('where code.exe 2^>NUL') do set "__CODE_CMD=%%f"
if defined __CODE_CMD (
if %_DEBUG%==1 echo %_DEBUG_LABEL% Using path of VSCode executable found in PATH 1>&2
@rem keep _VSCODE_PATH undefined since executable already in path
goto :eof
) else if defined VSCODE_HOME (
set "_VSCODE_HOME=%VSCODE_HOME%"
if %_DEBUG%==1 echo %_DEBUG_LABEL% Using environment variable VSCODE_HOME 1>&2
) else (
set __PATH=C:\opt
if exist "!__PATH!\VSCode\" ( set "_VSCODE_HOME=!__PATH!\VSCode"
) else (
for /f "delims=" %%f in ('dir /ad /b "!__PATH!\VSCode-1*" 2^>NUL') do set "_VSCODE_HOME=!__PATH!\%%f"
if not defined _VSCODE_HOME (
set "__PATH=%ProgramFiles%"
for /f "delims=" %%f in ('dir /ad /b "!__PATH!\VSCode-1*" 2^>NUL') do set "_VSCODE_HOME=!__PATH!\%%f"
)
)
if defined _VSCODE_HOME (
if %_DEBUG%==1 echo %_DEBUG_LABEL% Using default VSCode installation directory "!_VSCODE_HOME!" 1>&2
)
)
if not exist "%_VSCODE_HOME%\code.exe" (
echo %_WARNING_LABEL% VSCode executable not found ^("%_VSCODE_HOME%"^) 1>&2
if exist "%_VSCODE_HOME%\Code - Insiders.exe" (
echo %_WARNING_LABEL% It looks like you've installed an Insider version of VSCode 1>&2
)
set _EXITCODE=1
goto :eof
)
set "_VSCODE_PATH=;%_VSCODE_HOME%"
goto :eof
:print_env
set __VERBOSE=%~1
set "__VERSIONS_LINE1= "
set "__VERSIONS_LINE2= "
set __WHERE_ARGS=
where /q "%PYTHON_HOME%:python.exe"
if %ERRORLEVEL%==0 (
for /f "tokens=1,*" %%i in ('"%PYTHON_HOME%\python.exe" --version 2^>^&1') do set "__VERSIONS_LINE1=%__VERSIONS_LINE1% python %%j,"
set __WHERE_ARGS=%__WHERE_ARGS% "%PYTHON_HOME%:python.exe"
)
where /q pylint.exe
if %ERRORLEVEL%==0 (
for /f "tokens=1,*" %%i in ('pylint.exe --version 2^>^NUL ^| findstr pylint') do set "__VERSIONS_LINE1=%__VERSIONS_LINE1% pylint %%j,"
set __WHERE_ARGS=%__WHERE_ARGS% pylint.exe
)
where /q "%GRAALVM_HOME%\bin:javac.exe"
if %ERRORLEVEL%==0 (
for /f "tokens=1,*" %%i in ('"%GRAALVM_HOME%\bin\javac.exe" -version 2^>^&1') do set "__VERSIONS_LINE1=%__VERSIONS_LINE1% javac %%j"
set __WHERE_ARGS=%__WHERE_ARGS% "%GRAALVM_HOME%\bin:javac.exe"
)
where /q "%GIT_HOME%\bin:git.exe"
if %ERRORLEVEL%==0 (
for /f "tokens=1,2,*" %%i in ('"%GIT_HOME%\bin\git.exe" --version') do (
for /f "delims=. tokens=1,2,3,*" %%a in ("%%k") do set "__VERSIONS_LINE2=%__VERSIONS_LINE2% git %%a.%%b.%%c,"
)
set __WHERE_ARGS=%__WHERE_ARGS% "%GIT_HOME%\bin:git.exe"
)
where /q "%GIT_HOME%\usr\bin:diff.exe"
if %ERRORLEVEL%==0 (
for /f "tokens=1-3,*" %%i in ('"%GIT_HOME%\usr\bin\diff.exe" --version ^| findstr diff') do set "__VERSIONS_LINE2=%__VERSIONS_LINE2% diff %%l,"
set __WHERE_ARGS=%__WHERE_ARGS% "%GIT_HOME%\usr\bin:diff.exe"
)
where /q "%GIT_HOME%\bin:bash.exe"
if %ERRORLEVEL%==0 (
for /f "tokens=1-3,4,*" %%i in ('"%GIT_HOME%\bin\bash.exe" --version ^| findstr bash') do (
set "__VERSION=%%l"
setlocal enabledelayedexpansion
set "__VERSIONS_LINE2=%__VERSIONS_LINE2% bash !__VERSION:-release=!"
)
set __WHERE_ARGS=%__WHERE_ARGS% "%GIT_HOME%\bin:bash.exe"
)
echo Tool versions:
echo %__VERSIONS_LINE1%
echo %__VERSIONS_LINE2%
if %__VERBOSE%==1 (
echo Tool paths: 1>&2
for /f "tokens=*" %%p in ('where %__WHERE_ARGS%') do (
set "__LINE=%%p"
setlocal enabledelayedexpansion
echo !__LINE:%USERPROFILE%=%%USERPROFILE%%! 1>&2
)
echo Environment variables: 1>&2
if defined GIT_HOME echo "GIT_HOME=%GIT_HOME%" 1>&2
if defined GRAALVM_HOME echo "GRAALVM_HOME=%GRAALVM_HOME%" 1>&2
if defined JAVA_HOME echo "JAVA_HOME=%JAVA_HOME%" 1>&2
if defined JAVA17_HOME echo "JAVA17_HOME=%JAVA17_HOME%" 1>&2
if defined JAVA21_HOME echo "JAVA21_HOME=%JAVA21_HOME%" 1>&2
if defined MSVC_HOME echo "MSVC_HOME=%MSVC_HOME%" 1>&2
if defined MSVS_HOME echo "MSVS_HOME=%MSVS_HOME%" 1>&2
if defined PYTHON_HOME echo "PYTHON_HOME=%PYTHON_HOME%" 1>&2
echo Path associations: 1>&2
for /f "delims=" %%i in ('subst') do (
set "__LINE=%%i"
setlocal enabledelayedexpansion
echo !__LINE:%USERPROFILE%=%%USERPROFILE%%! 1>&2
)
)
goto :eof
@rem #########################################################################
@rem ## Cleanups
:end
endlocal & (
if %_EXITCODE%==0 (
if not defined GIT_HOME set "GIT_HOME=%_GIT_HOME%"
if not defined GRAALVM_HOME set "GRAALVM_HOME=%_GRAALVM_HOME%"
if not defined JAVA_HOME set "JAVA_HOME=%_JAVA_HOME%"
if not defined JAVA17_HOME set "JAVA17_HOME=%_JAVA17_HOME%"
if not defined JAVA21_HOME set "JAVA21_HOME=%_JAVA21_HOME%"
if not defined MSVC_HOME set "MSVC_HOME=%_MSVC_HOME%"
if not defined MSVS_HOME set "MSVS_HOME=%_MSVS_HOME%"
if not defined PYTHON_HOME set "PYTHON_HOME=%_PYTHON_HOME%"
@rem We prepend %_GIT_HOME%\bin to hide C:\Windows\System32\bash.exe
set "PATH=%_GIT_HOME%\bin;%_PYTHON_PATH%%PATH%%_GIT_PATH%;%~dp0bin"
call :print_env %_VERBOSE%
if not "%CD:~0,2%"=="%_DRIVE_NAME%" (
if %_DEBUG%==1 echo %_DEBUG_LABEL% cd /d %_DRIVE_NAME% 1>&2
cd /d %_DRIVE_NAME%
)
if %_BASH%==1 (
@rem see https://conemu.github.io/en/GitForWindows.html
if %_DEBUG%==1 echo %_DEBUG_LABEL% %_GIT_HOME%\usr\bin\bash.exe --login 1>&2
cmd.exe /c "%_GIT_HOME%\usr\bin\bash.exe --login"
)
)
if %_DEBUG%==1 echo %_DEBUG_LABEL% _EXITCODE=%_EXITCODE% 1>&2
for /f "delims==" %%i in ('set ^| findstr /b "_"') do set %%i=
)