diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-02-20 14:41:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-20 14:41:33 +0100 |
commit | cf8e34c28ed623b8fe58c66ead180298210e53bb (patch) | |
tree | 82bbe2a7a4f71f56a17473d4a26387aacc3dc940 /vendor/github.com/spf13/cobra/cobra.go | |
parent | 24a0ae43406e9ab100f9eeef8e249839dd4cf3f5 (diff) | |
parent | 3a8acfbbe50e44904ca406d2058e528b4430504c (diff) | |
download | podman-cf8e34c28ed623b8fe58c66ead180298210e53bb.tar.gz podman-cf8e34c28ed623b8fe58c66ead180298210e53bb.tar.bz2 podman-cf8e34c28ed623b8fe58c66ead180298210e53bb.zip |
Merge pull request #5275 from containers/dependabot/go_modules/github.com/spf13/cobra-0.0.6
build(deps): bump github.com/spf13/cobra from 0.0.5 to 0.0.6
Diffstat (limited to 'vendor/github.com/spf13/cobra/cobra.go')
-rw-r--r-- | vendor/github.com/spf13/cobra/cobra.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/spf13/cobra/cobra.go b/vendor/github.com/spf13/cobra/cobra.go index 6505c070b..d01becc8f 100644 --- a/vendor/github.com/spf13/cobra/cobra.go +++ b/vendor/github.com/spf13/cobra/cobra.go @@ -52,7 +52,7 @@ var EnableCommandSorting = true // if the CLI is started from explorer.exe. // To disable the mousetrap, just set this variable to blank string (""). // Works only on Microsoft Windows. -var MousetrapHelpText string = `This is a command line tool. +var MousetrapHelpText = `This is a command line tool. You need to open cmd.exe and run it from there. ` @@ -61,7 +61,7 @@ You need to open cmd.exe and run it from there. // if the CLI is started from explorer.exe. Set to 0 to wait for the return key to be pressed. // To disable the mousetrap, just set MousetrapHelpText to blank string (""). // Works only on Microsoft Windows. -var MousetrapDisplayDuration time.Duration = 5 * time.Second +var MousetrapDisplayDuration = 5 * time.Second // AddTemplateFunc adds a template function that's available to Usage and Help // template generation. |