From 4bc164cccc4c95d1f1e12e721aa61bb7299c1cef Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Sat, 30 Oct 2021 16:57:51 +0200 Subject: Forgot to include {installation.target} in subvolume mounting --- archinstall/lib/disk/btrfs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'archinstall/lib/disk/btrfs.py') diff --git a/archinstall/lib/disk/btrfs.py b/archinstall/lib/disk/btrfs.py index bf24f88b..f682cd7c 100644 --- a/archinstall/lib/disk/btrfs.py +++ b/archinstall/lib/disk/btrfs.py @@ -18,13 +18,13 @@ def mount_subvolume(installation, location :Union[pathlib.Path, str], force=Fals if type(location) == str: location = pathlib.Path(location) - if not location.exists(): - location.mkdir(parents=True) + if not (installation.target/location).exists(): + (installation.target/location).mkdir(parents=True) if glob.glob(str(installation.target/location/'*')) and force is False: raise DiskError(f"Cannot mount subvolume to {installation.target/location} because it contains data (non-empty folder target)") - log(f"Mounting {location} as a subvolume", level=logging.INFO) + log(f"Mounting {installation.target/location} as a subvolume", level=logging.INFO) # Mount the logical volume to the physical structure mount_location = get_mount_info(installation.target/location, traverse=True)['source'] SysCommand(f"umount {mount_location}") -- cgit v1.2.3-54-g00ecf