Use msys64 shell

This commit is contained in:
Matthieu Gautier 2024-05-08 11:33:59 +02:00
parent cd11901534
commit a90cf3d0a6
1 changed files with 4 additions and 4 deletions

View File

@ -21,13 +21,13 @@ class WinBashConfigInfo(ConfigInfo):
@property @property
def configure_wrapper(self): def configure_wrapper(self):
# yield "C:\\msys64\\usr\\bin\\bash.exe" # yield "C:\\msys64\\usr\\bin\\bash.exe"
yield "C:\\Program Files\\Git\\bin\\bash.exe" yield "C:\\msys64\\usr\\bin\\bash.exe"
@property @property
def make_wrapper(self): def make_wrapper(self):
return [] return []
# yield "C:\\msys64\\usr\\bin\\bash.exe" # yield "C:\\msys64\\usr\\bin\\bash.exe"
yield "C:\\Program Files\\Git\\bin\\bash.exe" yield "C:\\msys64\\usr\\bin\\bash.exe"
yield "-c" yield "-c"
@property @property
@ -57,6 +57,6 @@ class WinBashConfigInfo(ConfigInfo):
# ) # )
# env["PATH"][:] = list(PATH_ENV) # env["PATH"][:] = list(PATH_ENV)
# env["PATH"] += ["C:\\msys64\\usr\\bin"] # env["PATH"] += ["C:\\msys64\\usr\\bin"]
env["SHELL"] = "C:\\Windows\\System32\\bash.exe" env["SHELL"] = "C:\\msys64\\usr\\bin\\bash.exe"
env["CONFIG_SHELL"] = "C:\\Windows\\System32\\bash.exe" env["CONFIG_SHELL"] = "C:\\msys64\\usr\\bin\\bash.exe"
return env return env