From b0663dce334ec7761265384a44524b64fe9ae3c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Oliveirinha?= Date: Thu, 24 Nov 2022 16:03:47 +0000 Subject: [PATCH] TUN-6970: Print newline when printing tunnel token --- cmd/cloudflared/tunnel/subcommands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/cloudflared/tunnel/subcommands.go b/cmd/cloudflared/tunnel/subcommands.go index 9adc684c..1c6465a5 100644 --- a/cmd/cloudflared/tunnel/subcommands.go +++ b/cmd/cloudflared/tunnel/subcommands.go @@ -783,7 +783,7 @@ func tokenCommand(c *cli.Context) error { return err } - fmt.Printf("%s", encodedToken) + fmt.Println(encodedToken) return nil }