From 068b5d4c1e7aafbb08d1fba2006f6b44d6489b9e Mon Sep 17 00:00:00 2001 From: DavHau Date: Wed, 13 Aug 2025 11:59:34 +0700 Subject: [PATCH] install: fix error message when target host not specified --- pkgs/clan-cli/clan_cli/machines/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/clan-cli/clan_cli/machines/install.py b/pkgs/clan-cli/clan_cli/machines/install.py index 16b9932d9..fade32d7a 100644 --- a/pkgs/clan-cli/clan_cli/machines/install.py +++ b/pkgs/clan-cli/clan_cli/machines/install.py @@ -50,7 +50,7 @@ def install_command(args: argparse.Namespace) -> None: qr_code = read_qr_json(data, args.flake) remote = stack.enter_context(qr_code.get_best_remote()) else: - msg = "No MACHINE, --json or --png data provided" + msg = "No --target-host, --json or --png data provided" raise ClanError(msg) machine = Machine(name=args.machine, flake=flake)