mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-23 00:44:55 +03:00
Add short name -v for verbose option
This commit is contained in:
parent
c73a90ab15
commit
280b3451f2
@ -1,5 +1,6 @@
|
||||
name: verbose
|
||||
long: verbose
|
||||
short: v
|
||||
help: Turn on verbose
|
||||
---
|
||||
Turn on verbose output on standard error stream.
|
||||
|
@ -110,7 +110,7 @@ Options:
|
||||
Define a variable
|
||||
--variables-file <FILE>
|
||||
Define a properties file in which you define your variables
|
||||
--verbose
|
||||
-v, --verbose
|
||||
Turn on verbose
|
||||
--very-verbose
|
||||
Turn on verbose output, including HTTP response and libcurl logs
|
||||
|
@ -459,6 +459,7 @@ pub fn variables_file() -> clap::Arg {
|
||||
pub fn verbose() -> clap::Arg {
|
||||
clap::Arg::new("verbose")
|
||||
.long("verbose")
|
||||
.short('v')
|
||||
.help("Turn on verbose")
|
||||
.action(ArgAction::SetTrue)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user