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

install.sh

index 7313d34a4afdd784ad7478b6803dc62665a49cc6..77cb8b164382194a0ea1b8c69a4bbdbb5c4d61ef 100755 (executable)
@@ -878,4 +878,4 @@ install_cleanup() {
   unset install_cleanup
 }
 
   unset install_cleanup
 }
 
-install_main ${*}
+install_main "${@}"