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

Fix short help with analyzeCmd and diffCmd #359

Merged
merged 1 commit into from
Jun 30, 2021
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion cmd/analyze.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (

var analyzeCmd = &cobra.Command{
Use: "analyze image",
Short: "Analyzes an image: container-diff image",
Short: "Analyzes an image: container-diff analyze image",
Long: `Analyzes an image using the specifed analyzers as indicated via --type flag(s).

For details on how to specify images, run: container-diff help`,
Expand Down
2 changes: 1 addition & 1 deletion cmd/diff.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ var filename string

var diffCmd = &cobra.Command{
Use: "diff image1 image2",
Short: "Compare two images: container-diff image1 image2",
Short: "Compare two images: container-diff diff image1 image2",
Long: `Compares two images using the specifed analyzers as indicated via --type flag(s).

For details on how to specify images, run: container-diff help`,
Expand Down