From 43376a0051bdc3f094010a402bc04b99bfbe6e3b Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Thu, 12 Jan 2023 07:29:47 +0100 Subject: [PATCH] add return 1 --- usr/lib/archboot/installer/btrfs.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/btrfs.sh b/usr/lib/archboot/installer/btrfs.sh index c4e3388fa..9840bbbe1 100644 --- a/usr/lib/archboot/installer/btrfs.sh +++ b/usr/lib/archboot/installer/btrfs.sh @@ -179,6 +179,7 @@ _prepare_btrfs_subvolume() { _check_btrfs_subvolume _DOSUBVOLUME=1 done + _btrfs_compress || return 1 } # check btrfs subvolume @@ -250,7 +251,7 @@ _btrfs_subvolume() { else _prepare_btrfs_subvolume || return 1 fi - _btrfs_compress + _btrfs_compress || return 1 _FILESYSTEM_FINISH=1 }