Add missing newline after total execution time

master
kolaente 4 years ago
parent 50db0591a4
commit 784c9abcc9
Signed by: kolaente
GPG Key ID: F40E70337AB24C9B
  1. 2
      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)
},
}

Loading…
Cancel
Save