From f87f1ae18569769ef2955f50edb1d3a0e0146f3a Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Thu, 16 May 2024 18:15:55 +0200 Subject: [PATCH] WIP --- kiwixbuild/configs/winbash.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/kiwixbuild/configs/winbash.py b/kiwixbuild/configs/winbash.py index 39a9a7b..2e35c0a 100644 --- a/kiwixbuild/configs/winbash.py +++ b/kiwixbuild/configs/winbash.py @@ -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"