Skip to content

Commit

Permalink
Allow cases in ArtifactoryPath.glob() (#429)
Browse files Browse the repository at this point in the history
Co-authored-by: allburov <[email protected]>
dogbert911 and allburov authored Jan 16, 2025
1 parent ffbda40 commit 27d86fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion artifactory.py
Original file line number Diff line number Diff line change
@@ -454,7 +454,7 @@ def _get_base_url(self, url):
return get_global_base_url(url)

def compile_pattern(self, pattern):
return re.compile(fnmatch.translate(pattern), re.IGNORECASE).fullmatch
return re.compile(fnmatch.translate(pattern)).fullmatch

def parse_parts(self, parts):
drv, root, parsed = super(_ArtifactoryFlavour, self).parse_parts(parts)

0 comments on commit 27d86fe

Please sign in to comment.