Skip to content

Commit 8b32a2a

Browse files
committed
Fix btrfs subvolume creation
1 parent 1228a0c commit 8b32a2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

archinstall/lib/disk/filesystem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def perform_filesystem_operations(self, show_countdown: bool = True) -> None:
8888
)
8989

9090
for part_mod in mod.partitions:
91-
if part_mod.fs_type == FilesystemType.Btrfs:
91+
if part_mod.fs_type == FilesystemType.Btrfs and part_mod.is_create_or_modify():
9292
device_handler.create_btrfs_volumes(part_mod, enc_conf=self._enc_config)
9393

9494
def _format_partitions(

0 commit comments

Comments
 (0)