Skip to content

Commit

Permalink
[#44] adapt regex for new package names
Browse files Browse the repository at this point in the history
  • Loading branch information
d-w-moore authored and trel committed Dec 15, 2021
1 parent d792854 commit 0a00265
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion irods_consortium_continuous_integration_test_hook.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def Indexing_PackageName_Regex( package_ext, technology = 'elasticsearch' ):
tech = re.escape(technology)
ext = re.escape(package_ext)
return re.compile(
r'irods-rule-engine-plugin-(document-type|{tech}|indexing)-[0-9].*\.{ext}$'.format(**locals())
r'irods-rule-engine-plugin-(document-type|{tech}|indexing)[-_][0-9].*\.{ext}$'.format(**locals())
)

def get_matching_packages(directory,ext):
Expand Down

0 comments on commit 0a00265

Please sign in to comment.