From 02a550752363efa85536112143e3675b4a5627f9 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 1 Sep 2023 15:41:54 -0400 Subject: [PATCH] Revert "Set -noappend to mksquashfs just in case" This reverts commit e3d0a4bf5d2a4a5be299eeb0c0ae5dfeb7db43c9. --- buildiso.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildiso.sh b/buildiso.sh index 503171e..103a420 100755 --- a/buildiso.sh +++ b/buildiso.sh @@ -124,7 +124,7 @@ prepare_rootfs() { if [[ -f artifacts/filesystem.squashfs ]]; then rm -f artifacts/filesystem.squashfs &>/dev/null fi - sudo nice mksquashfs -noappend ${tempdir}/rootfs/ artifacts/filesystem.squashfs -e boot &>/dev/null || fail "Error generating squashfs." + sudo nice mksquashfs ${tempdir}/rootfs/ artifacts/filesystem.squashfs -e boot &>/dev/null || fail "Error generating squashfs." fi sudo cp artifacts/filesystem.squashfs ${tempdir}/installer/live/filesystem.squashfs &>/dev/null || fail "Error copying squashfs to tempdir." echo "done."