This commit is contained in:
Maciej 2021-03-29 02:41:21 +02:00
parent abc02773ae
commit 8f9d32d70d

5
Jenkinsfile vendored
View File

@ -5,7 +5,8 @@ pipeline {
string(
defaultValue: '1000',
description: 'cutoff',
name: 'CUTOFF'
name: 'CUTOFF',
trim:false
)
}
@ -18,7 +19,7 @@ pipeline {
stage('sh: Shell Script') {
steps {
sh 'chmod +x preparations.sh'
sh "./preparations.sh $(CUTOFF)"
sh './preparations.sh "$(CUTOFF)"'
}
}
stage('archiveArtifacts'){