Fixed missing quotes on parameter passing

This commit is contained in:
Eric Renfro 2024-11-06 13:10:24 -05:00
parent e0e34248fc
commit f6c7e9784c
Signed by: psi-jack
SSH key fingerprint: SHA256:1TKB8Z257L8EHK8GWNxKgMhD8a+FAR+f+j3nnlcuNVM

View file

@ -811,6 +811,6 @@ _SetupScript() {
case "$1" in case "$1" in
--iso-conf* | community) ;; # no more supported here --iso-conf* | community) ;; # no more supported here
setup) _SetupScript ;; setup) _SetupScript ;;
online | offline) _IsoConfig $2 ;; online | offline) _IsoConfig "$2" ;;
*) _PostInstallCommands "$1" ;; *) _PostInstallCommands "$1" ;;
esac esac