From 21f80fd0421395a06eea3d441cc6ecc154466df9 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Thu, 28 May 2026 17:34:09 -0500 Subject: [PATCH] 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. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "${@}" -- 2.52.0