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

Commit fb36d4c

Browse files
Merge pull request #63 from aaron-prindle/fix-root-cmd-text
fix cmd text for root container-diff command
2 parents 70a176e + 743eb33 commit fb36d4c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cmd/root.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ var analyzeFlagMap = map[string]*bool{
3737
type validatefxn func(args []string) (bool, error)
3838

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

4545
func NewClient() (*client.Client, error) {

0 commit comments

Comments
 (0)