From 15bf9f63f647cebd481eab72b9c0870d79e4081b Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 7 May 2024 14:19:38 +0200 Subject: [PATCH] set shell var --- kiwixbuild/configs/winbash.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kiwixbuild/configs/winbash.py b/kiwixbuild/configs/winbash.py index 7be863e..5be8159 100644 --- a/kiwixbuild/configs/winbash.py +++ b/kiwixbuild/configs/winbash.py @@ -50,4 +50,5 @@ class WinBashConfigInfo(ConfigInfo): def get_env(self): env = super().get_env() env["PATH"] += ["C:\\msys64\\usr\\bin"] + env["SHELL"] = "C:\\Windows\\System32\\bash.exe" return env