index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-10-30 16:57:51 +0200 |
---|---|---|
committer | Anton Hvornum <anton@hvornum.se> | 2021-10-30 16:57:51 +0200 |
commit | 4bc164cccc4c95d1f1e12e721aa61bb7299c1cef (patch) | |
tree | c1a668c6fd643ed7e358ed19ba9ad4a6ef51951f /archinstall/lib/disk | |
parent | c2596be1f10cb766b9bd06a0ab637468b90b07e4 (diff) |
-rw-r--r-- | archinstall/lib/disk/btrfs.py | 6 |
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}") |