Typo fix in Jenkinsfile

This commit is contained in:
s444380 2022-03-27 12:28:41 +02:00
parent e9ce9ea17f
commit 7345fe27a4

2
Jenkinsfile vendored
View File

@ -33,7 +33,7 @@ pipeline {
steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}",
"CUTOFF=%{params.CUTOFF}"]) {
"CUTOFF=${params.CUTOFF}"]) {
sh "./download_data.sh $CUTOFF"
archiveArtifacts artifacts: "crime.test, crime.dev, crime.train", onlyIfSuccessful: true
}