We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4592280 commit 8d58ab1Copy full SHA for 8d58ab1
archinstall/lib/disk/device_handler.py
@@ -244,7 +244,7 @@ def get_btrfs_info(
244
# expected output format:
245
# ID 257 gen 8 top level 5 path @home
246
name = Path(line.split(' ')[-1])
247
- sub_vol_mountpoint = btrfs_subvol_info.get(name, None)
+ sub_vol_mountpoint = btrfs_subvol_info.get('/' / name, None)
248
subvol_infos.append(_BtrfsSubvolumeInfo(name, sub_vol_mountpoint))
249
250
if not lsblk_info.mountpoint:
0 commit comments