Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornl6720 <nl6720@gmail.com>2022-12-06 12:27:35 +0200
committernl6720 <nl6720@gmail.com>2022-12-06 12:27:35 +0200
commit4ee6fdc1eab278485e13590c47c33db27de4efe5 (patch)
tree0d8ff5d917d92d412d7b1f5161a187242fc8573a
parent76815b1219e1d3d464c3b9c9a5a936374aa941c1 (diff)
mkarchiso: disable shellcheck warning when searching an array
The warning about SC2076 does not apply here.
-rwxr-xr-xarchiso/mkarchiso1
1 files changed, 1 insertions, 0 deletions
diff --git a/archiso/mkarchiso b/archiso/mkarchiso
index 9b917ab..30c1e06 100755
--- a/archiso/mkarchiso
+++ b/archiso/mkarchiso
@@ -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