1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-05-29 23:17:32 +02:00

add newline to version output

This commit is contained in:
Jesse Duffield 2018-08-13 12:27:26 +10:00
parent 84b27d402d
commit 1571e6b962

View File

@ -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()