Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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