From a90cf3d0a64a35e2ab50301b54b02a1872476658 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 8 May 2024 11:33:59 +0200 Subject: [PATCH] Use msys64 shell --- kiwixbuild/configs/winbash.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kiwixbuild/configs/winbash.py b/kiwixbuild/configs/winbash.py index ac4d33c..27a1f69 100644 --- a/kiwixbuild/configs/winbash.py +++ b/kiwixbuild/configs/winbash.py @@ -21,13 +21,13 @@ class WinBashConfigInfo(ConfigInfo): @property def configure_wrapper(self): # yield "C:\\msys64\\usr\\bin\\bash.exe" - yield "C:\\Program Files\\Git\\bin\\bash.exe" + yield "C:\\msys64\\usr\\bin\\bash.exe" @property def make_wrapper(self): return [] # yield "C:\\msys64\\usr\\bin\\bash.exe" - yield "C:\\Program Files\\Git\\bin\\bash.exe" + yield "C:\\msys64\\usr\\bin\\bash.exe" yield "-c" @property @@ -57,6 +57,6 @@ class WinBashConfigInfo(ConfigInfo): # ) # env["PATH"][:] = list(PATH_ENV) # env["PATH"] += ["C:\\msys64\\usr\\bin"] - env["SHELL"] = "C:\\Windows\\System32\\bash.exe" - env["CONFIG_SHELL"] = "C:\\Windows\\System32\\bash.exe" + env["SHELL"] = "C:\\msys64\\usr\\bin\\bash.exe" + env["CONFIG_SHELL"] = "C:\\msys64\\usr\\bin\\bash.exe" return env