From 0aad590b43c4adf1ed8cae42c200ec4beed69662 Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Tue, 23 May 2017 14:45:59 -0400 Subject: Change working dir for installation --- jenkins/dispatch.groovy | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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") { -- cgit