diff --git a/Jenkinsfile b/Jenkinsfile index d318b88..a83cf3f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -24,10 +24,8 @@ pipeline { stage('Run create-dataset script') { steps { withEnv (["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}"]) { - dir ('/app') { - sh 'chmod +x create-dataset.py' - sh 'python3 ./create-dataset.py' - } + sh 'chmod +x create-dataset.py' + sh 'python3 ./create-dataset.py' } } }