fix locked jars false positive
This commit is contained in:
parent
b90aef8e23
commit
4d54b3f88a
1 changed files with 1 additions and 1 deletions
|
@ -331,7 +331,7 @@ fn locked_jar(log: &str) -> Issue {
|
|||
.to_string(),
|
||||
);
|
||||
|
||||
let found = log.contains("Couldn't extract native jar");
|
||||
let found = log.contains("Couldn't extract native jar") && !log.contains("(missing)\n");
|
||||
found.then_some(issue)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue