mkarchiso: disable shellcheck warning when searching an array

The warning about SC2076 does not apply here.
This commit is contained in:
nl6720 2022-12-06 12:27:35 +02:00
parent 76815b1219
commit 4ee6fdc1ea
No known key found for this signature in database
GPG Key ID: 5CE88535E188D369

View File

@ -1005,6 +1005,7 @@ _validate_requirements_bootmode_uefi-x64.grub.esp() {
if [[ ! " ${pkg_list[*]} " =~ ' edk2-shell ' ]]; then
_msg_info "'edk2-shell' is not in the package list. The ISO will not contain a bootable UEFI shell."
fi
# shellcheck disable=SC2076
if [[ ! " ${pkg_list[*]} " =~ ' memtest86+-efi ' ]]; then
_msg_info "Validating '${bootmode}': 'memtest86+-efi' is not in the package list. Memory testing will not be available from GRUB."
fi