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

install.sh

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