From: Kevin Day Date: Thu, 28 May 2026 22:34:09 +0000 (-0500) Subject: Update: Install script to better handle white spaces. X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;p=control 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 7313d34..77cb8b1 100755 --- a/install.sh +++ b/install.sh @@ -878,4 +878,4 @@ install_cleanup() { unset install_cleanup } -install_main ${*} +install_main "${@}"