Merge pull request #3037 from mbotezatu/master

Wrap git_locale in quotes
This commit is contained in:
David Refoua
2025-11-07 17:30:58 +03:30
committed by GitHub

2
vendor/init.bat vendored
View File

@@ -390,7 +390,7 @@ setlocal enabledelayedexpansion
if defined git_locale (
REM %print_debug% init.bat "Env Var - git_locale=!git_locale!"
if not defined LANG (
for /F "delims=" %%F in ('!git_locale! -uU 2') do (
for /F "delims=" %%F in ('"!git_locale!" -uU 2') do (
set "LANG=%%F"
)
)