diff options
author | John Olheiser <42128690+jolheiser@users.noreply.github.com> | 2019-05-01 15:36:09 -0500 |
---|---|---|
committer | zeripath <art27@cantab.net> | 2019-05-01 21:36:09 +0100 |
commit | e255df83a66c65cc5d06bf5a915c502197141b58 (patch) | |
tree | 247635c9008bc572b979b6604a0a40d7ac28a49a /cmd | |
parent | caba2829ef3c6a49385da64c7c8dff348734ce67 (diff) | |
download | gitea-e255df83a66c65cc5d06bf5a915c502197141b58.tar.gz gitea-e255df83a66c65cc5d06bf5a915c502197141b58.zip |
Change verbose flag in dump command to avoid colliding with global version flag (#6822)
* Change verbose flag to avoid colliding with version flag
* Update docs
Signed-off-by: jolheiser <john.olheiser@gmail.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/dump.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/dump.go b/cmd/dump.go index a9e83f36d9..dd1123a254 100644 --- a/cmd/dump.go +++ b/cmd/dump.go @@ -36,7 +36,7 @@ It can be used for backup and capture Gitea server image to send to maintainer`, Usage: "Name of the dump file which will be created.", }, cli.BoolFlag{ - Name: "verbose, v", + Name: "verbose, V", Usage: "Show process details", }, cli.StringFlag{ |