Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk/btrfs.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-10-30 16:28:55 +0200
committerAnton Hvornum <anton@hvornum.se>2021-10-30 16:28:55 +0200
commitc4f688ce4c9ce89748e11bd0565c9b3720e66b74 (patch)
tree7792db9e35cc3aedaf7e2e9f8a58a43a37bbb061 /archinstall/lib/disk/btrfs.py
parent6be071b6e0d43a2fded8a3fd773525fb1216aa91 (diff)
Added some error handling to mount points not getting mounted properly.
Diffstat (limited to 'archinstall/lib/disk/btrfs.py')
-rw-r--r--archinstall/lib/disk/btrfs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/disk/btrfs.py b/archinstall/lib/disk/btrfs.py
index b56430b8..cf60095f 100644
--- a/archinstall/lib/disk/btrfs.py
+++ b/archinstall/lib/disk/btrfs.py
@@ -25,7 +25,7 @@ def mount_subvolume(installation, location :Union[pathlib.Path, str], force=Fals
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)
- print(get_mount_info(installation.target/location))
+ print(get_mount_info(installation.target/location, traverse=True))
# Mount the logical volume to the physical structure
mount_location = get_mount_info(installation.target/location)['source']
SysCommand(f"umount {mount_location}")