Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
Created using spr 1.3.6-beta.1
  • Loading branch information
sunshowers committed Dec 21, 2024
2 parents 4a472ea + 13193f1 commit ec6f367
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions package/src/dot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,10 @@ pub fn do_dot(
let dep_node =
pkg_for_output.get(dependency).ok_or_else(|| {
anyhow!(
"package {:?} has dependency on {:?}, which does \
not correspond to the output of any package",
pkgname, dependency)
"package \"{}\" has dependency on {:?}, which does \
not correspond to the output of any package",
pkgname, dependency,
)
})?;
graph.add_edge(*pkg_node, **dep_node, "merge");
}
Expand Down

0 comments on commit ec6f367

Please sign in to comment.