From ba1d86ebecd44b49828e51f0ff26b52454ff2a55 Mon Sep 17 00:00:00 2001 From: Adrian Charkiewicz Date: Thu, 24 Mar 2022 19:46:09 +0100 Subject: [PATCH] Jenkinsfile name of script --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 35e126f..59a83e0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -28,8 +28,8 @@ pipeline { steps { echo 'Hello world' checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s444354/ium_444354']]]) - sh "chmod u+x ./download.sh" - sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} CUTOFF=${CUTOFF} ./download.sh" + sh "chmod u+x ./script.sh" + sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} CUTOFF=${CUTOFF} ./script.sh" archiveArtifacts 'data.txt' } }