fn ade_set_no_lvm_partiton_fs()

in src/distro.rs [429:434]


    fn ade_set_no_lvm_partiton_fs(partitions: &mut [PartInfo]) {
        // This will only affect the partitions which are marked as 'crypt?' as this is an indicator for an encrypted partition.
        partitions.iter_mut().filter(|partition| partition.fstype == "crypt?").for_each(|part| {
            part.fstype = Self::get_partition_filesystem(constants::ADE_OSENCRYPT_PATH).unwrap_or("xfs".to_string());
        });
    }