From b6a0c6cb38fba615f8eecc43a562b9694a7a5591 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Wed, 11 Jun 2025 16:05:50 +0200 Subject: [PATCH] Docs(cli/machines): improve description of '--template' --- pkgs/clan-cli/clan_cli/machines/create.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/clan-cli/clan_cli/machines/create.py b/pkgs/clan-cli/clan_cli/machines/create.py index b2f523034..34b34875e 100644 --- a/pkgs/clan-cli/clan_cli/machines/create.py +++ b/pkgs/clan-cli/clan_cli/machines/create.py @@ -145,6 +145,8 @@ def register_create_parser(parser: argparse.ArgumentParser) -> None: "-t", "--template", type=str, - help="Reference to the template to use for the machine. In the format '#template_name'", + help="""Reference to the template to use for the machine. In the format '#template_name' Where is a flake reference (e.g. github:org/repo) or a local path (e.g. '.' ). + Omitting '#' will use the pre-provided templates (e.g. just 'new-machine' (default) ). + """, default="new-machine", )