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" => {
return Err(None);
}
"" => (),
_ => {
return Err(Some("Unrecognized argument".to_string()));
}