We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63eaa60 commit bf7aeaaCopy full SHA for bf7aeaa
src/bootstrap/flags.rs
@@ -679,7 +679,7 @@ impl Subcommand {
679
}
680
681
fn split(s: &[String]) -> Vec<String> {
682
- s.iter().flat_map(|s| s.split(',')).map(|s| s.to_string()).collect()
+ s.iter().flat_map(|s| s.split(',')).filter(|s| !s.is_empty()).map(|s| s.to_string()).collect()
683
684
685
fn parse_deny_warnings(matches: &getopts::Matches) -> Option<bool> {
0 commit comments