Skip to content

Commit

Permalink
improve help string for --dep-graph
Browse files Browse the repository at this point in the history
The current one is not clear enough as to what `<ext>` is supposed to be.
So provide some examples, especially `.dot` which doesn't require `graphviz-python`
  • Loading branch information
Flamefire committed Aug 13, 2024
1 parent 45e6db4 commit ba127ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion easybuild/tools/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,8 @@ def informative_options(self):
'check-conflicts': ("Check for version conflicts in dependency graphs", None, 'store_true', False),
'check-eb-deps': ("Check presence and version of (required and optional) EasyBuild dependencies",
None, 'store_true', False),
'dep-graph': ("Create dependency graph", None, 'store', None, {'metavar': 'depgraph.<ext>'}),
'dep-graph': ("Create dependency graph. Output format depends on <ext>, e.g. 'dot', 'png', 'pdf', 'gv'.",
None, 'store', None, {'metavar': 'depgraph.<ext>'}),
'dump-env-script': ("Dump source script to set up build environment based on toolchain/dependencies",
None, 'store_true', False),
'last-log': ("Print location to EasyBuild log file of last (failed) session", None, 'store_true', False),
Expand Down

0 comments on commit ba127ec

Please sign in to comment.