]> Kevux Git Server - controller/commitdiff
Update: Install script to better handle white spaces. development
authorKevin Day <Kevin@kevux.org>
Thu, 28 May 2026 22:34:36 +0000 (17:34 -0500)
committerKevin Day <Kevin@kevux.org>
Thu, 28 May 2026 22:35:43 +0000 (17:35 -0500)
The `"${@}"` will expand spaces correctly into each parameter.
The double quotes are requires as `${@}` will not work as expected.

install.sh

index 6ef858e9b1c418ec5b13e1432a8c02ebdde87566..f1a43cebfc40b2590e99dc72aded52178cbdc334 100755 (executable)
@@ -878,4 +878,4 @@ install_cleanup() {
   unset install_cleanup
 }
 
-install_main ${*}
+install_main "${@}"