From 2e4603e464a7f4148f21aee33f46319c014f7a5b Mon Sep 17 00:00:00 2001 From: codefiles <11915375+codefiles@users.noreply.github.com> Date: Thu, 8 May 2025 09:39:43 -0400 Subject: [PATCH] Fix btrfs subvolume creation (#3446) --- archinstall/lib/disk/filesystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archinstall/lib/disk/filesystem.py b/archinstall/lib/disk/filesystem.py index c00f1578..b180f588 100644 --- a/archinstall/lib/disk/filesystem.py +++ b/archinstall/lib/disk/filesystem.py @@ -88,7 +88,7 @@ class FilesystemHandler: ) for part_mod in mod.partitions: - if part_mod.fs_type == FilesystemType.Btrfs: + if part_mod.fs_type == FilesystemType.Btrfs and part_mod.is_create_or_modify(): device_handler.create_btrfs_volumes(part_mod, enc_conf=self._enc_config) def _format_partitions(