diff options
author | Matt Rendina <mrendina@stsci.edu> | 2017-05-23 14:45:59 -0400 |
---|---|---|
committer | Matt Rendina <mrendina@stsci.edu> | 2017-05-23 14:45:59 -0400 |
commit | 0aad590b43c4adf1ed8cae42c200ec4beed69662 (patch) | |
tree | af7847bf4f0e2c1f7af0eaf4185fcec3fcd305d3 /jenkins | |
parent | e0888b607157fed223386eb7734c031964bf265c (diff) | |
download | build_control-0aad590b43c4adf1ed8cae42c200ec4beed69662.tar.gz |
Change working dir for installation
Diffstat (limited to 'jenkins')
-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") { |