Remove break statement.

This commit is contained in:
Manuele Simi 2019-12-08 15:14:52 -05:00
parent c7b951a4de
commit 4326d6613d
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -244,7 +244,7 @@ boolean wasSuccess(job_name) {
if (job_name.equals(columns[0]) && columns[1].equal('SUCCESS')) {
ret = true
println "NAME: ${columns[0]} STATUS: ${columns[1]}"
break
return
}
}
ret;