From 37c9a9794f9270c8d16f0cd1b9f790fc30a3b9d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Gra=C3=B1a?= Date: Mon, 22 Dec 2025 14:31:03 -0300 Subject: [PATCH] fix(certs): quote hostname in suggested certs command Closes #4711 --- internal/command/certificates/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/command/certificates/root.go b/internal/command/certificates/root.go index 4e27cd7cc8..d9b2018a78 100644 --- a/internal/command/certificates/root.go +++ b/internal/command/certificates/root.go @@ -202,7 +202,7 @@ func runCertificatesAdd(ctx context.Context) error { io := iostreams.FromContext(ctx) colorize := io.ColorScheme() fmt.Fprintf(io.Out, "\nOnce your DNS is configured correctly, we will automatically provision your certificate.\n") - fmt.Fprintf(io.Out, "Run %s to check the progress.\n", colorize.Bold("fly certs check "+hostname)) + fmt.Fprintf(io.Out, "To check progress, run: %s\n", colorize.Bold(fmt.Sprintf("fly certs check '%s'", hostname))) return nil }