diff --git a/Jenkinsfile b/Jenkinsfile index b8be4a6..aceff7d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,8 +8,9 @@ pipeline { stages { stage('Build') { steps { - sh 'cd python' - sh 'python setup.py bdist_wheel' + dir('python') { + sh 'python setup.py bdist_wheel' + } } }