diff --git a/Jenkinsfile b/Jenkinsfile index 4d5155c..c5352e2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { } pipeline{ agent any - properties([parameters([text(defaultValue: '100', description: 'Number of lines to cutoff', name: 'CUT')])]) + properties([parameters([text(defaultValue: '100', description: 'Number of lines to cutoff', name: 'CUTOFF')])]) stages{ stage('Stage 1'){ steps{ @@ -24,7 +24,7 @@ pipeline{ } stage('sh: Shell Script'){ steps{ - withEnv(["CUTOFF=${params.CUT}"]) + withEnv(["CUTOFF=${params.CUTOFF}"]) ./data.sh } }