Skip to content

Commit

Permalink
Fix a typo in regex
Browse files Browse the repository at this point in the history
  • Loading branch information
msrb committed Jun 1, 2023
1 parent 29ef5cf commit 07e0bc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ pipeline {
sendMessage(type: 'queued', artifactId: artifactId, pipelineMetadata: pipelineMetadata, dryRun: isPullRequest())
if (TARGET_BRANCH != 'rawhide') {
// fallback to rawhide in case this is not a standard fedora (or epel) branch
releaseId = (params.TARGET_BRANCH ==~ /f\d+|epel\d+/|epel\d+\-next/) ? params.TARGET_BRANCH : env.FEDORA_CI_RAWHIDE_RELEASE_ID
releaseId = (params.TARGET_BRANCH ==~ /f\d+|epel\d+|epel\d+\-next/) ? params.TARGET_BRANCH : env.FEDORA_CI_RAWHIDE_RELEASE_ID
} else {
releaseId = env.FEDORA_CI_RAWHIDE_RELEASE_ID
}
Expand Down

0 comments on commit 07e0bc4

Please sign in to comment.