Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/disk.py1
1 files changed, 1 insertions, 0 deletions
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)}")