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 caa7e95 commit 05616a2Copy full SHA for 05616a2
charon/pkgs/maven.py
@@ -924,7 +924,7 @@ def __hash_decorate_metadata(path: str, metadata: str) -> List[str]:
924
925
def _is_ignored(filename: str, ignore_patterns: List[str]) -> bool:
926
for ignored_name in STANDARD_GENERATED_IGNORES:
927
- if ignored_name in filename:
+ if filename and filename.startswith(ignored_name.strip()):
928
logger.warning("Ignoring standard generated Maven path: %s", filename)
929
return True
930
0 commit comments