Skip to content

Commit

Permalink
fix matcher (conan-io#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
czoido authored Mar 11, 2022
1 parent 426dc2f commit 21301ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .jenkins/new_toolchains.jenkins
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ node('Linux') {
output = sh(script: 'git diff --name-only origin/master --diff-filter=AMR', returnStdout: true)
}
for (line in output.split('\n')) {
def matcher = (line =~ /^recipesToBuild\/([^\/]+)\//)
def matcher = (line =~ /^recipes\/([^\/]+)\//)
if (matcher) {
recipesToBuild.add(matcher[0][1] as String)
}
Expand Down

0 comments on commit 21301ce

Please sign in to comment.