Skip to content

Commit fe46da3

Browse files
committed
Fix escaping in groovy
1 parent 6ab5224 commit fe46da3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ pipeline {
7373
script {
7474
def shStatusCode = sh(label: 'build-frontend', returnStatus: true, script: '''
7575
set -e
76-
./scripts/ci/build-frontend | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g" > ${WORKSPACE}/tmp-sh-build 2>&1
76+
./scripts/ci/build-frontend | sed -r "s/\\x1B\\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g" > ${WORKSPACE}/tmp-sh-build 2>&1
7777
''')
7878
shOutput = readFile "${env.WORKSPACE}/tmp-sh-build"
7979
if (shStatusCode != 0) {

0 commit comments

Comments
 (0)