From 80e831fde8bdef33b13746ad9a991c53865e3850 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wojciech=20Miko=C5=82ajski?= Date: Mon, 17 Apr 2023 21:40:34 +0200 Subject: [PATCH] Update 'Jenkinsfile' --- Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1db09f4..94c5a62 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,10 +30,9 @@ node { withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}", "CUT = ${params.CUT}" ]) { - def cut = $CUT sh 'kaggle datasets download -d mssmartypants/water-quality > output.txt' sh 'unzip -o water-quality.zip >> output.txt' - sh 'python3 create_dataset.py ${cut} >> output.txt' + sh 'python3 create_dataset.py $CUT >> output.txt' archiveArtifacts artifacts: 'waterQuality.csv, output.txt' } }