Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
fix: correct version command description
Browse files Browse the repository at this point in the history
  • Loading branch information
myishay committed May 3, 2021
1 parent 86f75e7 commit 64dd750
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/version/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ import (
func NewVersionCommand(cliVersion string) *cobra.Command {
var versionCmd = &cobra.Command{
Use: "version",
Short: "Print the version number of Hugo",
Long: `All software has versions. This is Hugo's`,
Short: "Print the version number",
Long: "Print the version number",
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("datree version: ", cliVersion)
fmt.Println(cliVersion)
},
}
return versionCmd
Expand Down

0 comments on commit 64dd750

Please sign in to comment.