From 1d342dd1ff5f3da5841e627df4f2ae13fab3f5cd Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Wed, 17 Jul 2024 22:16:18 +0200 Subject: [PATCH] fix testsuite --- usr/bin/archboot-testsuite.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/usr/bin/archboot-testsuite.sh b/usr/bin/archboot-testsuite.sh index f45c8a4bb..f39a3fd9b 100755 --- a/usr/bin/archboot-testsuite.sh +++ b/usr/bin/archboot-testsuite.sh @@ -95,6 +95,7 @@ dd if=/dev/zero of="${_IMG}" bs=1M count=1000 &>"${_NO_LOG}" sync losetup -f "${_IMG}" for i in bcachefs btrfs ext4 swap vfat xfs; do + command -v mkfs.${i} || return 1 if [[ "${i}" == "swap" ]]; then echo -n "${i} " mkswap "${_LOOP}" &>"${_NO_LOG}" ||\