From: Kevin Day Date: Thu, 28 May 2026 22:35:03 +0000 (-0500) Subject: Update: Install script to better handle white spaces. X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=refs%2Fheads%2Fdevelopment;p=kevux-tools Update: Install script to better handle white spaces. The `"${@}"` will expand spaces correctly into each parameter. The double quotes are requires as `${@}` will not work as expected. --- diff --git a/install.sh b/install.sh index dfec3ee..05f10e8 100755 --- a/install.sh +++ b/install.sh @@ -878,4 +878,4 @@ install_cleanup() { unset install_cleanup } -install_main ${*} +install_main "${@}"