]> Kevux Git Server - kevux-tools/commitdiff
Update: Install script to better handle white spaces. development
authorKevin Day <Kevin@kevux.org>
Thu, 28 May 2026 22:35:03 +0000 (17:35 -0500)
committerKevin Day <Kevin@kevux.org>
Thu, 28 May 2026 22:35:25 +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 dfec3ee5a601804359308f2c0b5b517dfb978c33..05f10e854a855c0ab3e54f95c5c1cdaa6daa3875 100755 (executable)
@@ -878,4 +878,4 @@ install_cleanup() {
   unset install_cleanup
 }
 
-install_main ${*}
+install_main "${@}"