Skip to content

Commit

Permalink
Merge pull request #41 from vmware-labs/remove-extra-newline
Browse files Browse the repository at this point in the history
Remove extra newline from version command
  • Loading branch information
alemorcuq authored Jan 19, 2024
2 parents 2e91c94 + 0eb8f78 commit 79139ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/dt/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var versionCmd = &cobra.Command{
if Commit != "" {
msg += fmt.Sprintf("Git Commit: %s\n", Commit)
}
fmt.Printf("%s\n", msg)
fmt.Print(msg)
os.Exit(0)
},
}
Expand Down

0 comments on commit 79139ce

Please sign in to comment.