From 668150190404b169b2e5895278f3ee97a939b371 Mon Sep 17 00:00:00 2001 From: codefiles <11915375+codefiles@users.noreply.github.com> Date: Sat, 11 Jan 2025 19:46:34 -0500 Subject: [PATCH] Fix Btrfs subvolume mount options (#3108) --- archinstall/lib/installer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py index 064a1a35..6e669b8c 100644 --- a/archinstall/lib/installer.py +++ b/archinstall/lib/installer.py @@ -363,8 +363,8 @@ class Installer: ) -> None: for subvol in sorted(subvolumes, key=lambda x: x.relative_mountpoint): mountpoint = self.target / subvol.relative_mountpoint - mount_options = mount_options + [f'subvol={subvol.name}'] - disk.device_handler.mount(dev_path, mountpoint, options=mount_options) + options = mount_options + [f'subvol={subvol.name}'] + disk.device_handler.mount(dev_path, mountpoint, options=options) def generate_key_files(self) -> None: match self._disk_encryption.encryption_type: