mirror of
https://github.com/centreon/centreon-plugins.git
synced 2025-07-27 15:44:21 +02:00
fix(ci): detect properly plugin changes in lib directory (#4264)
This commit is contained in:
parent
b69238bcbb
commit
7454b17388
2
.github/scripts/process-plugins.py
vendored
2
.github/scripts/process-plugins.py
vendored
@ -31,7 +31,7 @@ list_packages = set()
|
||||
for plugin in plugins:
|
||||
list_plugins.add(plugin)
|
||||
try:
|
||||
found = re.search('(.*)\/(?:plugin\.pm|mode\/.+|custom\/.+)', plugin).group(1)
|
||||
found = re.search('(.*)\/(?:plugin\.pm|(?:lib|mode|custom)\/.+)', plugin).group(1)
|
||||
list_plugins.add(found)
|
||||
except AttributeError:
|
||||
pass
|
||||
|
Loading…
x
Reference in New Issue
Block a user