mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-23 19:12:06 +03:00
Merge pull request #119 from oraoto/master
Fix cookies_input_file argument name mismatch
This commit is contained in:
commit
9d78bd2bd0
@ -528,7 +528,9 @@ fn parse_options(matches: ArgMatches) -> Result<CLIOptions, CLIError> {
|
||||
let no_proxy = matches.value_of("proxy").map(|x| x.to_string());
|
||||
let insecure = matches.is_present("insecure");
|
||||
let follow_location = matches.is_present("follow_location");
|
||||
let cookie_input_file = matches.value_of("cookie_input_file").map(|x| x.to_string());
|
||||
let cookie_input_file = matches
|
||||
.value_of("cookies_input_file")
|
||||
.map(|x| x.to_string());
|
||||
let max_redirect = match matches.value_of("max_redirects") {
|
||||
None => Some(50),
|
||||
Some("-1") => None,
|
||||
|
Loading…
Reference in New Issue
Block a user