Merge pull request 'cli: fix missing newline in error message' (#4634) from push-lnmsprtyuntw into main

Reviewed-on: https://git.clan.lol/clan/clan-core/pulls/4634
This commit is contained in:
Michael Hoang
2025-08-08 05:30:05 +00:00

View File

@@ -445,7 +445,7 @@ def ensure_admin_public_keys(flake_dir: Path) -> set[SopsKey]:
msg = (
f"We could not figure out which Clan secrets user you are with the SOPS keys we found:\n"
f"- {'\n- '.join(f'{key.key_type.name.lower()}: {key.pubkey}' for key in keys)}\n\n"
f"Please ensure you have created a Clan secrets user and added one of your SOPS keys"
f"Please ensure you have created a Clan secrets user and added one of your SOPS keys\n"
f"to that user.\n"
f"For more information, see: https://docs.clan.lol/guides/secrets/#add-your-public-keys"
)