Skip to content

Commit

Permalink
minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
Savannah Ostrowski committed Jun 17, 2023
1 parent 6a661db commit 7b4ed4b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cmd/root.go
Expand Up @@ -20,9 +20,10 @@ var (
}
versionCmd = &cobra.Command{
Use: "version",
Short: "Prints the Ghost version"
Short: "Prints the Ghost version",
Run: func(cmd *cobra.Command, args []string) {
fmt.Printf("Ghost Version: %v", Version)
version := fmt.Sprintf("Ghost version: %v", Version)
fmt.Println(version)
},
}
)
Expand Down

0 comments on commit 7b4ed4b

Please sign in to comment.