From 92419a48fc08fb7f5f564f395c35217595cc492f Mon Sep 17 00:00:00 2001 From: David Refoua Date: Thu, 23 May 2024 21:59:16 +0330 Subject: [PATCH 1/2] log the executable path for improper git --- vendor/lib/lib_git.cmd | 1 + 1 file changed, 1 insertion(+) diff --git a/vendor/lib/lib_git.cmd b/vendor/lib/lib_git.cmd index 77997a7..205bd6e 100644 --- a/vendor/lib/lib_git.cmd +++ b/vendor/lib/lib_git.cmd @@ -55,6 +55,7 @@ exit /b set "GIT_VERSION=%%C" ) else ( echo "'git --version' returned an improper version string!" + echo "executable: %git_executable%" pause exit /b ) From 5145a151397bc2d17874c8c8b8aa10a0362d42d2 Mon Sep 17 00:00:00 2001 From: David Refoua Date: Tue, 28 May 2024 17:19:47 +0330 Subject: [PATCH 2/2] display git improper version string as debug --- vendor/lib/lib_git.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/lib/lib_git.cmd b/vendor/lib/lib_git.cmd index 205bd6e..de963ce 100644 --- a/vendor/lib/lib_git.cmd +++ b/vendor/lib/lib_git.cmd @@ -55,7 +55,7 @@ exit /b set "GIT_VERSION=%%C" ) else ( echo "'git --version' returned an improper version string!" - echo "executable: %git_executable%" + %print_debug% :read_version "returned string: '%%A %%B %%C' by executable path: %git_executable%" pause exit /b )