From 6cadf4622470efe5e09c46dcbcbd6fea9fb1afe0 Mon Sep 17 00:00:00 2001 From: PawelDopierala Date: Tue, 2 Apr 2024 20:56:12 +0200 Subject: [PATCH] fix error --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index bdc35ce..710e800 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -36,7 +36,7 @@ pipeline { withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) { sh 'chmod 777 ./data_processing.py' - sh "./data_processing.py ${params.CUTOFF}" + sh "python ./data_processing.py ${params.CUTOFF}" } } }