Merge pull request #3096 from edsantiago/varlink_usage

varlink: fix usage message, URI is now optional
This commit is contained in:
OpenShift Merge Robot
2019-05-14 13:59:22 +02:00
committed by GitHub

View File

@ -29,7 +29,7 @@ var (
Tools speaking varlink protocol can remotely manage pods, containers and images.
`
_varlinkCommand = &cobra.Command{
Use: "varlink [flags] URI",
Use: "varlink [flags] [URI]",
Short: "Run varlink interface",
Long: varlinkDescription,
RunE: func(cmd *cobra.Command, args []string) error {
@ -68,7 +68,7 @@ func varlinkCmd(c *cliconfig.VarlinkValues) error {
args := c.InputArgs
if len(args) > 1 {
return errors.Errorf("too many arguments. you may optionally provide 1")
return errors.Errorf("too many arguments. You may optionally provide 1")
}
if len(args) > 0 {