Print contents of the metadata registry
(ctx: click.Context)
| 337 | @cli.command("registry-dump") |
| 338 | @click.pass_context |
| 339 | def registry_dump_command(ctx: click.Context): |
| 340 | """ |
| 341 | Print contents of the metadata registry |
| 342 | """ |
| 343 | repo = ctx.obj["CHDIR"] |
| 344 | fs_yaml_file = ctx.obj["FS_YAML_FILE"] |
| 345 | cli_check_repo(repo, fs_yaml_file) |
| 346 | repo_config = load_repo_config(repo, fs_yaml_file) |
| 347 | |
| 348 | click.echo(registry_dump(repo_config, repo_path=repo)) |
| 349 | |
| 350 | |
| 351 | @cli.command("materialize") |
nothing calls this directly
no test coverage detected