From e8442a0f34477740dee573560347493462d0a0f1 Mon Sep 17 00:00:00 2001 From: iff Date: Mon, 9 Dec 2024 21:45:47 +0100 Subject: [PATCH] fix: windows installation --- install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index ce8c3c8..df65089 100644 --- a/install.sh +++ b/install.sh @@ -23,9 +23,11 @@ main() { case "${_arch}" in *windows*) _bin_name="${_bin_name}.exe" + local _modules_win="" for _module in ${_modules}; do - _module="${_module}.exe" + _modules_win="${_modules_win} ${_module}.exe" done + _modules="${_modules_win}" ;; *) ;; esac