Skip to content

Commit

Permalink
fix: format
Browse files Browse the repository at this point in the history
  • Loading branch information
axetroy committed Jul 13, 2024
1 parent c853307 commit e6d0633
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/command_check_updates.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,10 @@ pub async fn check_updates(
.await
{
if e.to_string().contains("404 Not Found") {
eprintln!("Warning: Package {}'s distribute files not found. Skipping...", package.name);
eprintln!(
"Warning: Package {}'s distribute files not found. Skipping...",
package.name
);
} else {
eprintln!("Error installing package {}: {}", package.name, e);
}
Expand Down

0 comments on commit e6d0633

Please sign in to comment.