Skip to content

Commit

Permalink
fix: meta-commands of esm-master
Browse files Browse the repository at this point in the history
  • Loading branch information
pgierz committed Oct 23, 2024
1 parent 001996e commit eb7c9d6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/esm_tools/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,11 @@ def repl():
)
main.add_command(esm_master.cli.create_command("get", "Download model source code"))
for name, steps in esm_master.get_meta_commands().items():
main.add_command(esm_master.cli.create_meta_command(name, steps))
main.add_command(
esm_master.cli.create_command(
name, f"Runs the following steps: {', '.join(steps)}"
)
)
main.add_command(esm_tests.cli.main, name="run-tests")
main.add_command(esm_plugin_manager.cli.main, name="list-plugins")
main.add_command(esm_utilities.cli.logfile_stats, name="logfile-stats")
Expand Down

0 comments on commit eb7c9d6

Please sign in to comment.