From dc02a714467d0ec247016acd0a0de1383b4e9e9d Mon Sep 17 00:00:00 2001 From: Niraj Tolia Date: Wed, 25 Jan 2023 21:27:45 -0800 Subject: [PATCH] Print Corso version on one line (#2269) ## Description Don't split the Corso version information across lines. This is unexpected. ## Does this PR need a docs update or release note? - [x] :no_entry: No ## Type of change - [x] :broom: Tech Debt/Cleanup --- src/cli/cli.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/cli.go b/src/cli/cli.go index be5059809..f06354f0b 100644 --- a/src/cli/cli.go +++ b/src/cli/cli.go @@ -39,7 +39,7 @@ var corsoCmd = &cobra.Command{ func handleCorsoCmd(cmd *cobra.Command, args []string) error { v, _ := cmd.Flags().GetBool("version") if v { - print.Outf(cmd.Context(), "Corso\nversion: "+version.Version) + print.Outf(cmd.Context(), "Corso version: "+version.Version) return nil }