10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c441316 commit 0df0818Copy full SHA for 0df0818
git/util.py
@@ -475,6 +475,8 @@ def _is_cygwin_git(git_executable: str) -> bool:
475
process = subprocess.Popen([strings_cmd, git_cmd], stdout=subprocess.PIPE, text=True)
476
strings_output, _ = process.communicate()
477
is_cygwin = any(x for x in strings_output if "cygwin" in x.lower())
478
+ if not is_cygwin:
479
+ _logger.debug(f"is not cygwin: {strings_output}")
480
except Exception as ex:
481
_logger.debug("Failed checking if running in CYGWIN due to: %r", ex)
482
_is_cygwin_cache[git_executable] = is_cygwin
0 commit comments