Fix syntax.

This commit is contained in:
Manuele Simi 2019-12-08 15:13:53 -05:00
parent 48f8d98fe7
commit c7b951a4de
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -241,7 +241,7 @@ def buildComponents(args, maven_settings_file, maven_local_repo_path) {
boolean wasSuccess(job_name) {
boolean ret = false
new File("$PREVIOUS_JOB_REPORT").splitEachLine(',') { columns ->
if job_name.equals(columns[0]) && columns[1].equal('SUCCESS') {
if (job_name.equals(columns[0]) && columns[1].equal('SUCCESS')) {
ret = true
println "NAME: ${columns[0]} STATUS: ${columns[1]}"
break