Skip to content

Commit

Permalink
fix(upgrade): Adjust responsibility for errors
Browse files Browse the repository at this point in the history
  • Loading branch information
epage authored and cassaundra committed Aug 19, 2022
1 parent 94d5241 commit 175d6e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/upgrade/upgrade.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ fn exec(args: UpgradeArgs) -> CargoResult<()> {
let dependency = match Dependency::from_toml(&manifest_path, dep_key, dep_item) {
Ok(dependency) => dependency,
Err(err) => {
shell_warn(&format!("ignoring {}, invalid entry: {}", dep_key, err))?;
shell_warn(&format!("ignoring {}, unsupported entry: {}", dep_key, err))?;
continue;
}
};
Expand Down

0 comments on commit 175d6e6

Please sign in to comment.