Skip to content

Commit

Permalink
feat: [#59] cmd implement version flag
Browse files Browse the repository at this point in the history
Set version field of the cobra command
  • Loading branch information
deepu9 authored and mirkobrombin committed Jul 5, 2024
1 parent e4cdbf8 commit 69852ce
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ import (
)

var rootCmd = &cobra.Command{
Use: "vib",
Short: "Vib is a tool to build container images from recipes using modules",
Long: "Vib is a tool to build container images from YAML recipes using modules to define the steps to build the image.",
Use: "vib",
Short: "Vib is a tool to build container images from recipes using modules",
Long: "Vib is a tool to build container images from YAML recipes using modules to define the steps to build the image.",
Version: "0.7.3",
}

func init() {
Expand Down

0 comments on commit 69852ce

Please sign in to comment.