summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorMatt Mitchell <mmitche@microsoft.com>2016-07-20 11:43:07 -0700
committerMatt Mitchell <mmitche@microsoft.com>2016-07-20 11:43:07 -0700
commitc110738b7d3dc9cffc46883234450cf0d97587f1 (patch)
treecc92c5536ea85473c4c06027efbbc3892deaf49d /netci.groovy
parent54a3d1d6755c2ca9fee95514673095540f76b56d (diff)
downloadcoreclr-c110738b7d3dc9cffc46883234450cf0d97587f1.tar.gz
coreclr-c110738b7d3dc9cffc46883234450cf0d97587f1.tar.bz2
coreclr-c110738b7d3dc9cffc46883234450cf0d97587f1.zip
Incorrect quoting around regex string
Strings requiring inline replacement need double quotes
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy2
1 files changed, 1 insertions, 1 deletions
diff --git a/netci.groovy b/netci.groovy
index 3720ed7412..a34ccedd8e 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -560,7 +560,7 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
case 'Ubuntu16.04':
assert !isFlowJob
assert scenario == 'default'
- Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build", '(?i).*test\\W+${os}\\W+.*')
+ Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build", "(?i).*test\\W+${os}\\W+.*")
break
case 'Ubuntu':
case 'OSX':