From 1f45e6a5e978dc89605f5290d3bbff472a5a8085 Mon Sep 17 00:00:00 2001 From: Jamie Curnow Date: Sat, 11 May 2024 00:14:05 +1000 Subject: [PATCH] Fix unescaped character in CI --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index efe3a26c..fcc64b28 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -184,7 +184,7 @@ pipeline { stage('Docs Job') { when { allOf { - when { branch pattern: "^(develop|master)$", comparator: "REGEXP"} + when { branch pattern: "^(develop|master)\$", comparator: "REGEXP"} not { equals expected: 'UNSTABLE', actual: currentBuild.result }