change cut to cutoff
This commit is contained in:
parent
3397cd0901
commit
ca841de0f1
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
@ -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
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user