Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit c110738

Browse files
committed
Incorrect quoting around regex string
Strings requiring inline replacement need double quotes
1 parent 54a3d1d commit c110738

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

netci.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
560560
case 'Ubuntu16.04':
561561
assert !isFlowJob
562562
assert scenario == 'default'
563-
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build", '(?i).*test\\W+${os}\\W+.*')
563+
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build", "(?i).*test\\W+${os}\\W+.*")
564564
break
565565
case 'Ubuntu':
566566
case 'OSX':

0 commit comments

Comments
 (0)