From 04c73cfbfee9441939ece395929b10b03d8ea18d Mon Sep 17 00:00:00 2001 From: vato007 Date: Thu, 30 Jul 2020 10:46:21 +0000 Subject: [PATCH] Don't try and build from different directory --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8e0a632..b8be4a6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,7 +9,7 @@ pipeline { stage('Build') { steps { sh 'cd python' - sh 'python python/setup.py bdist_wheel' + sh 'python setup.py bdist_wheel' } }