Always run lists if they contain something that has no provides info
This commit is contained in:
parent
2b786a2175
commit
e4b3424ba6
1 changed files with 2 additions and 0 deletions
|
|
@ -48,6 +48,8 @@ impl Symbol for List<'_> {
|
|||
for symbol in &self.symbols {
|
||||
if let Some(provides) = symbol.provides() {
|
||||
r.extend(provides.into_iter());
|
||||
} else {
|
||||
return None;
|
||||
}
|
||||
}
|
||||
if r.is_empty() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue