diff options
-rw-r--r-- | jenkins/dispatch.groovy | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/jenkins/dispatch.groovy b/jenkins/dispatch.groovy index 42b3535..27a7606 100644 --- a/jenkins/dispatch.groovy +++ b/jenkins/dispatch.groovy @@ -167,7 +167,9 @@ node(LABEL) { sh "patch ${filename} ${full_patchname}" // Install support tools - sh "python setup.py install" + dir(this.utils_dir) { + sh "python setup.py install" + { } stage("Generate build list") { |