This commit is contained in:
Matthieu Gautier 2024-05-16 18:15:55 +02:00
parent c9078c0ca1
commit f87f1ae185
1 changed files with 8 additions and 2 deletions

View File

@ -21,8 +21,14 @@ class WinBashConfigInfo(ConfigInfo):
@property
def configure_wrapper(self):
# yield "C:\\msys64\\usr\\bin\\bash.iexe"
yield str(Path.home() / "Git" / "bin" / "bash.exe")
if True:
yield "C:\\Program Files\\Git\\bin\\bash.exe"
else:
yield str(Path.home() / "Git" / "bin" / "bash.exe")
yield "--noprofile"
yield "--norc"
yield "-e"
yield "-o"
# yield "C:\\msys64\\usr\\bin\\bash.exe"