mkarchiso: error out of iso and netboot build modes if no boot modes are specified
This commit is contained in:
parent
f3959d6ef0
commit
d2315bc98d
@ -804,6 +804,10 @@ _validate_common_requirements_buildmode_iso_netboot() {
|
||||
fi
|
||||
|
||||
# Check if the specified bootmodes are supported
|
||||
if (( ${#bootmodes[@]} < 1 )); then
|
||||
(( validation_error=validation_error+1 ))
|
||||
_msg_error "No boot modes specified in '${profile}/profiledef.sh'." 0
|
||||
fi
|
||||
for bootmode in "${bootmodes[@]}"; do
|
||||
if typeset -f "_make_bootmode_${bootmode}" &> /dev/null; then
|
||||
if typeset -f "_validate_requirements_bootmode_${bootmode}" &> /dev/null; then
|
||||
|
Loading…
Reference in New Issue
Block a user