conandeps: spell out each branch's path on indirect nodes in the tree
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01EYNdaGDrpaqDyT8QtrTQbM
This commit is contained in:
parent
4b084f8bae
commit
a7db279fb0
3 changed files with 11 additions and 4 deletions
|
|
@ -450,6 +450,8 @@ def _tree_lines(report: Report) -> List[str]:
|
|||
lines.append(prefix + branch + name + " (not in graph)")
|
||||
return
|
||||
tags = []
|
||||
if seen: # indirect: spell out this branch's path so indentation need not be counted
|
||||
tags.append(" -> ".join(seen + (name,)))
|
||||
if dep.build_require:
|
||||
tags.append("build-require")
|
||||
ov = edge_overrides.get((parent, name))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue