File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
commands/operator-sdk/cmd Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ var asFile bool
26
26
func NewPrintDepsCmd () * cobra.Command {
27
27
printDepsCmd := & cobra.Command {
28
28
Use : "print-deps" ,
29
- Short : "Print dependencies expected by the Operator SDK " ,
30
- Long : `The operator-sdk print-deps command prints all dependencies expected by this
31
- version of the Operator SDK. Versions for these dependencies should match those
32
- in an operators' Gopkg.toml file.
29
+ Short : "Print Golang packages and versions required to run the operator " ,
30
+ Long : `The operator-sdk print-deps command prints all Golang packages and versions expected
31
+ by this version of the Operator SDK. Versions for these packages should match
32
+ those in an operators' Gopkg.toml file.
33
33
34
34
print-deps prints in columnar format by default. Use the --as-file flag to
35
35
print in Gopkg.toml file format.
Original file line number Diff line number Diff line change @@ -90,11 +90,11 @@ operator-sdk completion bash
90
90
91
91
## print-deps
92
92
93
- Prints the most recent dependencies and their versions known by the ` operator-sdk ` binary . Prints in columnar format by default.
93
+ Prints the most recent Golang packages and versions required by operators . Prints in columnar format by default.
94
94
95
95
### Flags
96
96
97
- * ` --as-file ` Print dependencies and versions in Gopkg.toml format.
97
+ * ` --as-file ` Print packages and versions in Gopkg.toml format.
98
98
99
99
## generate
100
100
You can’t perform that action at this time.
0 commit comments