Catch exception if the report is not available.

This commit is contained in:
Manuele Simi 2019-12-09 16:54:48 -05:00
parent 68826de759
commit 1c504c6c64
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -256,6 +256,6 @@ def parseJobs(job_file) {
return return
jobs["${columns[0]}"] = columns[1] jobs["${columns[0]}"] = columns[1]
} }
} catch() {println "Previous job report not available"} } catch(Exception e) {println "Previous job report not available"}
jobs; jobs;
} }