aquatic_common: ignore some whitespace in cli arg parser

This commit is contained in:
Joakim Frostegård 2022-07-24 12:01:18 +02:00
parent bd70474d73
commit 414af5a26f

View file

@ -69,6 +69,7 @@ impl Options {
"-h" | "--help" => { "-h" | "--help" => {
return Err(None); return Err(None);
} }
"" => (),
_ => { _ => {
return Err(Some("Unrecognized argument".to_string())); return Err(Some("Unrecognized argument".to_string()));
} }