Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion cmd/notation/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ func versionCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "version",
Short: "Show the notation version information",
Args: cobra.NoArgs,
Long: `Show the notation version information

Example - Show notation version:
notation version
`,
Comment on lines +28 to +32
Args: cobra.NoArgs,
Run: func(cmd *cobra.Command, args []string) {
runVersion()
},
Expand Down
Loading