fix method name

This commit is contained in:
Roberto Cirillo 2022-05-11 12:03:07 +02:00
parent 041850e099
commit b447e3025f
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -71,7 +71,7 @@ pipeline {
echo 'Cron build enabled. Deploy from system ongoing'
script {
// parse the report and extract the data
def components = estractComponentsFromCSV(deployList)
def components = gettComponentsFromCSV(deployList)
if (components.size() > 0) {
for (component in components) {
stage(component){
@ -178,7 +178,7 @@ pipeline {
//parse a csv file formatted in this way: ComponentName,ComponentVersion, ComponentHost
def estractComponentsFromCSV(def deployList) {
def getComponentsFromCSV(def deployList) {
def components = []
if (fileExists("${deployList}")) {
echo 'file found'