diff options
author | Matt Rendina <mrendina@stsci.edu> | 2017-07-26 17:12:46 -0400 |
---|---|---|
committer | Matt Rendina <mrendina@stsci.edu> | 2017-07-26 17:12:46 -0400 |
commit | 4d3db8f8ac12dbb6baf00dc6afe15135ba8404ce (patch) | |
tree | 9e34c9f764338a7df7430e5ae376495886da4763 /jenkins | |
parent | f76e160c08293e68a5c407fec24667acd769072a (diff) | |
download | build_control-4d3db8f8ac12dbb6baf00dc6afe15135ba8404ce.tar.gz |
Better output
Diffstat (limited to 'jenkins')
-rw-r--r-- | jenkins/dispatch.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jenkins/dispatch.groovy b/jenkins/dispatch.groovy index f407d2e..7dd09e0 100644 --- a/jenkins/dispatch.groovy +++ b/jenkins/dispatch.groovy @@ -166,7 +166,7 @@ node(LABEL) { def conda_build_version = sh(script: "conda-build --version", returnStdout: true) def conda_build_maj_ver = conda_build_version.tokenize()[1].tokenize('.')[0] if (conda_build_maj_ver == "2") { - println("conda_build_maj_ver ${conda_build_maj_ver} detected. Applying bugfix patch.") + println("conda-build major version ${conda_build_maj_ver} detected. Applying bugfix patch.") def filename = "${env.WORKSPACE}/miniconda/lib/python${PY_VERSION}/" + "site-packages/conda_build/config.py" def patches_dir = "${env.WORKSPACE}/patches" |