index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
author | nl6720 <nl6720@gmail.com> | 2021-08-24 21:16:42 +0300 |
---|---|---|
committer | nl6720 <nl6720@gmail.com> | 2021-08-25 00:29:35 +0300 |
commit | d2315bc98d1e5c07e9d88247d0ad8259677fbac8 (patch) | |
tree | c0e42f2db01c39d9a4ccc978a926348737bda7f7 /archiso | |
parent | f3959d6ef054af629d162052fd42f3d9fb2512dd (diff) |
-rwxr-xr-x | archiso/mkarchiso | 4 |
diff --git a/archiso/mkarchiso b/archiso/mkarchiso index fb601c3..6181af2 100755 --- a/archiso/mkarchiso +++ b/archiso/mkarchiso @@ -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 |