From 8a84c3e1b34d70c0e7d617837c4c6f19cd8721fb Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Sat, 31 Aug 2024 20:36:54 +0200 Subject: [PATCH] Prepare FormatPartition::describe for more supported filesystems --- crates/installer/src/steps/partitions.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/installer/src/steps/partitions.rs b/crates/installer/src/steps/partitions.rs index 4613f92..53db4a4 100644 --- a/crates/installer/src/steps/partitions.rs +++ b/crates/installer/src/steps/partitions.rs @@ -43,8 +43,7 @@ impl<'a> FormatPartition<'a> { } pub(super) fn describe(&self) -> String { - // TODO: More than ext4 xD - format!("{} as ext4", self.partition.path.display()) + format!("{} as {}", self.partition.path.display(), self.filesystem) } }