From 784c9abcc96b2e4b656c0f49d54b0f7e4007bc8d Mon Sep 17 00:00:00 2001 From: kolaente Date: Mon, 25 May 2020 18:36:14 +0200 Subject: [PATCH] Add missing newline after total execution time --- cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index ed37bcb..9e51c98 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -28,7 +28,7 @@ var rootCommand = &cobra.Command{ }, PostRun: func(cmd *cobra.Command, args []string) { totalTime := time.Since(startTime) - fmt.Printf("Total execution time: %v", totalTime) + fmt.Printf("Total execution time: %v\n", totalTime) }, }