From 205d589c455da1875d805c85349e708f7a0e2e90 Mon Sep 17 00:00:00 2001 From: Chris Hofstaedtler Date: Tue, 10 Dec 2024 10:31:00 +0100 Subject: [PATCH] grml-live: fix build only mode Fix embarrassing typo. --- grml-live | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/grml-live b/grml-live index acbbe185..fb2b3ee3 100755 --- a/grml-live +++ b/grml-live @@ -677,8 +677,8 @@ if [ -n "$EXTRACT_ISO_NAME" ]; then fi local squashfs - squahsfs=( "${tempdir}"/live/*/*.squashfs ) - if (( ${#squahsfs[@]} != 0 )) && [ -r "${squashfs[0]}" ]; then + squashfs=( "${tempdir}"/live/*/*.squashfs ) + if (( ${#squashfs[@]} != 0 )) && [ -r "${squashfs[0]}" ]; then log "Will unsquashfs ${squashfs[0]}" unsquashfs -d "${CHROOT_OUTPUT}" "${squashfs[0]}" ; rc=$? else