fix script

This commit is contained in:
s444417 2022-03-28 10:51:03 +02:00
parent a217a2f0e5
commit c14c265125
2 changed files with 2 additions and 2 deletions

2
Jenkinsfile vendored
View File

@ -26,7 +26,7 @@ pipeline {
stage("Shell Scripts") {
steps {
sh "chmod u+x ./startscript1.sh"
sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${env.KAGGLE_KEY} ${CUTOFF} ./startscript1.sh"
sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${env.KAGGLE_KEY} CUTOFF=${CUTOFF} ./startscript1.sh"
archiveArtifacts artifacts: 'data.txt'
}
}

View File

@ -24,7 +24,7 @@
)
sh "chmod u+x ./startscript2.sh"
sh " ./startscript2.sh"
archiveArtifacts 'num_lines.txt'
archiveArtifacts artifacts: 'num_lines.txt'
}
}
}