Skip to content

Commit

Permalink
Merge pull request #18 from jplatte/format-part
Browse files Browse the repository at this point in the history
Prepare FormatPartition::describe for more supported filesystems
  • Loading branch information
ikeycode authored Sep 12, 2024
2 parents 19e704e + 8a84c3e commit a077ba4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/installer/src/steps/partitions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}

Expand Down

0 comments on commit a077ba4

Please sign in to comment.