Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[4/n] [omicron-package] add and use target presets #7288

Prev Previous commit
Next Next commit
[spr] changes introduced through rebase
Created using spr 1.3.6-beta.1

[skip ci]
  • Loading branch information
sunshowers committed Dec 21, 2024
commit 13193f12399953080da9d3b2853328dff142be77
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