fix: windows installation

This commit is contained in:
iff 2024-12-09 21:45:47 +01:00
parent aa11a3682a
commit e8442a0f34

View file

@ -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