index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | archinstall/lib/disk.py | 1 |
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py index 52afffcf..5cb95226 100644 --- a/archinstall/lib/disk.py +++ b/archinstall/lib/disk.py @@ -133,6 +133,7 @@ class Partition(): self.mount(mountpoint) mount_information = get_mount_info(self.path) + actual_fstype = get_filesystem_type(self.path) # blkid -o value -s TYPE self.path if self.mountpoint != mount_information.get('target', None) and mountpoint: raise DiskError(f"{self} was given a mountpoint but the actual mountpoint differs: {mount_information.get('target', None)}") |