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

Commit 25b2e88

Browse files
authored
Merge pull request #359 from blueyed/fix-help
Fix short help with analyzeCmd and diffCmd
2 parents 989fd8d + 35df96c commit 25b2e88

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/analyze.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import (
3030

3131
var analyzeCmd = &cobra.Command{
3232
Use: "analyze image",
33-
Short: "Analyzes an image: container-diff image",
33+
Short: "Analyzes an image: container-diff analyze image",
3434
Long: `Analyzes an image using the specifed analyzers as indicated via --type flag(s).
3535
3636
For details on how to specify images, run: container-diff help`,

cmd/diff.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var filename string
3535

3636
var diffCmd = &cobra.Command{
3737
Use: "diff image1 image2",
38-
Short: "Compare two images: container-diff image1 image2",
38+
Short: "Compare two images: container-diff diff image1 image2",
3939
Long: `Compares two images using the specifed analyzers as indicated via --type flag(s).
4040
4141
For details on how to specify images, run: container-diff help`,

0 commit comments

Comments
 (0)