(from_spec)
| 49 | help="URL to copy .dockerized/ from (must be git-clone compatible). See https://github.com/benzaita/dockerized-cli/wiki/Examples", |
| 50 | ) |
| 51 | def init(from_spec): |
| 52 | with friendly_dockerized_errors(click): |
| 53 | init_command = InitCommand(Path.cwd(), from_spec=from_spec) |
| 54 | init_command.run() |
| 55 | |
| 56 | if from_spec: |
| 57 | click.echo(f"initialized .dockerized/ from {from_spec}") |
| 58 | else: |
| 59 | click.echo('created') |
| 60 | |
| 61 | |
| 62 | @main.command( |
nothing calls this directly
no test coverage detected