List available distributions.
(ctx: click.Context)
| 1115 | @show.command("distros") |
| 1116 | @click.pass_context |
| 1117 | def show_distros(ctx: click.Context) -> None: |
| 1118 | """List available distributions.""" |
| 1119 | s = store.Store(_require_db(ctx, must_exist=True), read_only=True) |
| 1120 | for distro, release in s.distros(): |
| 1121 | click.echo(f"{distro}/{release}") |
| 1122 | |
| 1123 | |
| 1124 | @show.command("sections") |
nothing calls this directly
no test coverage detected