Skip to content
This repository was archived by the owner on Mar 27, 2024. It is now read-only.

fix cmd text for root container-diff command #63

Merged
Merged
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
6 changes: 3 additions & 3 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ var analyzeFlagMap = map[string]*bool{
type validatefxn func(args []string) (bool, error)

var RootCmd = &cobra.Command{
Use: "To analyze a single image: [image]. To compare two images: [image1] [image2]",
Short: "Analyze a single image or compare two images.",
Long: `Analyzes a single image or compares two images using the specifed analyzers/differs as indicated via flags (see documentation for available ones).`,
Use: "container-diff",
Short: "container-diff is a tool for analyzing and comparing container images",
Long: `container-diff is a CLI tool for analyzing and comparing container images.`,
}

func NewClient() (*client.Client, error) {
Expand Down