Fix param check.

This commit is contained in:
awalsh128 2022-11-19 15:02:25 -08:00
parent 110c8b1c77
commit e1665e549b

View file

@ -36,7 +36,7 @@ if test -z "${packages}"; then
exit 2
fi
if test "${execute_install_scripts}" != "true" -o "${execute_install_scripts}" != "false"; then
if test "${execute_install_scripts}" != "true" -a "${execute_install_scripts}" != "false"; then
log "aborted"
log "execute_install_scripts value '${execute_install_scripts}' must be either true or false (case sensitive)."
exit 3