diff --git a/tests/CI/gates.jenkinsfile b/tests/CI/gates.jenkinsfile index 219abb0cc6ffb53613253cfc6dcd8f4ff1234e64..82ef3434989bba5db46ab634a468e26304cfad18 100644 --- a/tests/CI/gates.jenkinsfile +++ b/tests/CI/gates.jenkinsfile @@ -100,7 +100,7 @@ pipeline { withCredentials([usernamePassword(credentialsId: "${JENKINS_GERRIT_CREDS}", passwordVariable: 'GERRIT_USER_PW', usernameVariable: 'GERRIT_USER_NAME')]) { - sh "printenv -0 | sort -z | tr '\0' '\n'" + sh "printenv -0 | sort -z | tr '\\0' '\\n'" checkout scm: [$class: 'GitSCM', branches: [[name: env.GERRIT_BRANCH ]], diff --git a/tests/CI/periodics-daily.jenkinsfile b/tests/CI/periodics-daily.jenkinsfile index ce10209fb7177d8e8ab7e4c256fa8ab4ca1c8f24..352737fd1d93c25529dba5f6485cb077462e3560 100644 --- a/tests/CI/periodics-daily.jenkinsfile +++ b/tests/CI/periodics-daily.jenkinsfile @@ -43,7 +43,7 @@ pipeline { stage ("Checkout") { sh "sudo chown -R jenkins:users ." - sh "printenv -0 | sort -z | tr '\0' '\n'" + sh "printenv -0 | sort -z | tr '\\0' '\\n'" sh "sudo tests/CI/setupJenkinsEnvironment.sh" } diff --git a/tests/CI/ref_debug.jenkinsfile b/tests/CI/ref_debug.jenkinsfile index 5c4f4873fe8d63396b2fd5921aa6df13517a7966..a87f7dce64d7ea28b32ec7ba998d8ff0981f5ed3 100644 --- a/tests/CI/ref_debug.jenkinsfile +++ b/tests/CI/ref_debug.jenkinsfile @@ -43,7 +43,7 @@ pipeline { stage ("Checkout") { sh "sudo chown -R jenkins:users ." - sh "printenv -0 | sort -z | tr '\0' '\n'" + sh "printenv -0 | sort -z | tr '\\0' '\\n'" sh "sudo tests/CI/setupJenkinsEnvironment.sh" } diff --git a/tests/CI/unittests.jenkinsfile b/tests/CI/unittests.jenkinsfile index 7a5cd4ad6df0e5b966257bfedcf1551f36f8ed13..6f81479c6645eef174f7e9e16f2cf054069653c1 100644 --- a/tests/CI/unittests.jenkinsfile +++ b/tests/CI/unittests.jenkinsfile @@ -100,7 +100,7 @@ pipeline { withCredentials([usernamePassword(credentialsId: "${JENKINS_GERRIT_CREDS}", passwordVariable: 'GERRIT_USER_PW', usernameVariable: 'GERRIT_USER_NAME')]) { - sh "printenv -0 | sort -z | tr '\0' '\n'" + sh "printenv -0 | sort -z | tr '\\0' '\\n'" checkout scm: [$class: 'GitSCM', branches: [[name: env.GERRIT_BRANCH ]],