You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 27, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: cmd/root.go
+51-28Lines changed: 51 additions & 28 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@ import (
6
6
goflag "flag"
7
7
"fmt"
8
8
"os"
9
+
"reflect"
9
10
"sort"
10
11
"sync"
11
12
@@ -35,9 +36,9 @@ var analyzeFlagMap = map[string]*bool{
35
36
}
36
37
37
38
varRootCmd=&cobra.Command{
38
-
Use: "[image1] [image2]",
39
-
Short: "Compare two images.",
40
-
Long: `Compares two images using the specifed differs as indicated via flags (see documentation for available differs).`,
39
+
Use: "To analyze a single image: [image]. To compare two images: [image1] [image2]",
40
+
Short: "Analyze a single image or compare two images.",
41
+
Long: `Analyzes a single image or compares two images using the specifed analyzers/differs as indicated via flags (see documentation for available ones).`,
0 commit comments