Skip to content

Commit

Permalink
Merge pull request #160 from spowelljr/fixVersionOutput
Browse files Browse the repository at this point in the history
Fix version output
  • Loading branch information
medyagh authored Aug 16, 2024
2 parents e5e77b3 + 661739c commit 7072e81
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/gopogh/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ var (
func main() {
flag.Parse()
if *version {
fmt.Printf("Version %s Build %s", report.Version(), report.Build)
fmt.Printf("Version %s Build %s\n", report.Version(), report.Build)
return
}

if *inPath == "" {
Expand Down

0 comments on commit 7072e81

Please sign in to comment.