Skip to content

Commit

Permalink
refactor(distributable): import ComponentStatus
Browse files Browse the repository at this point in the history
  • Loading branch information
rami3l committed Jan 19, 2024
1 parent 0bfdb38 commit 10d093f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/toolchain/distributable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use crate::{
dist::{
config::Config,
dist::{Profile, ToolchainDesc},
manifest::{Component, Manifest},
manifest::{Component, ComponentStatus, Manifest},
manifestation::{Changes, Manifestation},
prefix::InstallPrefix,
},
Expand Down Expand Up @@ -115,7 +115,7 @@ impl<'a> DistributableToolchain<'a> {
Ok(())
}

pub(crate) fn components(&self) -> anyhow::Result<Vec<crate::dist::manifest::ComponentStatus>> {
pub(crate) fn components(&self) -> anyhow::Result<Vec<ComponentStatus>> {
let manifestation = self.get_manifestation()?;
let config = manifestation.read_config()?.unwrap_or_default();
let manifest = self.get_manifest()?;
Expand Down

0 comments on commit 10d093f

Please sign in to comment.