Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-06-14 19:01:06 +0200
committerAnton Hvornum <anton@hvornum.se>2021-06-14 19:01:06 +0200
commit6176ac5e5d6fc52740c2af73af89db7e413d3d2f (patch)
tree62303211d62c85bb7798ebb26adcb1824e3f1483 /archinstall
parent2ac1f453cf2f12baeb562b0ff47911e1358d988d (diff)
Since all fs-type's appear to be lower-case in 'man parted', we'll check against a lowered list in general for supported fs-types.
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/disk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py
index 1911110a..8424bc24 100644
--- a/archinstall/lib/disk.py
+++ b/archinstall/lib/disk.py
@@ -25,7 +25,7 @@ def valid_fs_type(fstype :str) -> bool:
erfs", "udf", or "xfs".
"""
- return fstype in [
+ return fstype.lower() in [
"btrfs",
"ext2",
"ext3", "ext4", # `man parted` allows these