Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use std::str::FromStr;
use anyhow::{Context, Result, anyhow, bail};
use serde::Deserialize;
use thiserror::Error as ThisError;
use tracing::{debug, error, info, trace, warn};
use tracing::{debug, info, trace, warn};
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have no idea why this wasn't linted before. Toolchain bug?


use crate::{
cli::{common, self_update::SelfUpdateMode},
Expand Down
2 changes: 1 addition & 1 deletion src/dist/manifestation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,8 @@ impl Manifestation {
tx = self.uninstall_component(component, &new_manifest, tx)?;
}

info!("downloading component(s)");
let mut tx = if !components.is_empty() {
info!("downloading component(s)");
let mut stream = InstallEvents::new(components.into_iter(), Arc::new(self));
let mut transaction = Some(tx);
let tx = loop {
Expand Down