From c14c26512529afe7880d19fa14d5d9c118ec9115 Mon Sep 17 00:00:00 2001 From: s444417 Date: Mon, 28 Mar 2022 10:51:03 +0200 Subject: [PATCH] fix script --- Jenkinsfile | 2 +- Jenkinsfile2 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 01aae0f..c59e46d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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' } } diff --git a/Jenkinsfile2 b/Jenkinsfile2 index d6f9c54..e2855aa 100644 --- a/Jenkinsfile2 +++ b/Jenkinsfile2 @@ -24,7 +24,7 @@ ) sh "chmod u+x ./startscript2.sh" sh " ./startscript2.sh" - archiveArtifacts 'num_lines.txt' + archiveArtifacts artifacts: 'num_lines.txt' } } }