Skip to content

Commit 2ef20cc

Browse files
authored
Update cli.go
Add the one blank between cli name and ex option. * before ~~~ Examples: # Perform garbage collection with the default settings ocex dockergc ~~~ * after ~~~ Examples: # Perform garbage collection with the default settings oc ex dockergc ~~~
1 parent e0f1909 commit 2ef20cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/oc/cli/cli.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ func NewCommandCLI(name, fullName string, in io.Reader, out, errout io.Writer) *
249249
templates.ActsAsRootCommand(cmds, filters, groups...).
250250
ExposeFlags(loginCmd, "certificate-authority", "insecure-skip-tls-verify", "token")
251251

252-
cmds.AddCommand(newExperimentalCommand("ex", name+"ex", f, ioStreams))
252+
cmds.AddCommand(newExperimentalCommand("ex", name+" ex", f, ioStreams))
253253

254254
cmds.AddCommand(kubectlwrappers.NewCmdPlugin(fullName, f, ioStreams))
255255
if name == fullName {

0 commit comments

Comments
 (0)