From 1571e6b9623bffec6828319bc020ccf732a720a7 Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Mon, 13 Aug 2018 12:27:26 +1000 Subject: [PATCH] add newline to version output --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index aec4051bf..28ecb9ec6 100644 --- a/main.go +++ b/main.go @@ -118,7 +118,7 @@ func main() { version = fallbackVersion() } if *versionFlag { - fmt.Printf("commit=%s, build date=%s, version=%s", commit, date, version) + fmt.Printf("commit=%s, build date=%s, version=%s\n", commit, date, version) os.Exit(0) } verifyInGitRepo()