diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2017-12-21 11:45:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-21 11:45:00 -0500 |
commit | c0424e6e7befc05b33cd0e313bcca2efae1b8863 (patch) | |
tree | de0b09c14222cef68ae3dd85b7d2ebf5ce045d5d /jenkins/dispatch.groovy | |
parent | 64db301e7a309ea38b644c12bb3727a7cefc8e61 (diff) | |
download | build_control-c0424e6e7befc05b33cd0e313bcca2efae1b8863.tar.gz |
Fix typo1.0.13
Diffstat (limited to 'jenkins/dispatch.groovy')
-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 e1eaef2..a79635e 100644 --- a/jenkins/dispatch.groovy +++ b/jenkins/dispatch.groovy @@ -220,7 +220,7 @@ node(LABEL) { def full_patchname = "${patches_dir}/${patchname}" sh "patch ${filename} ${full_patchname}" } - if (conda_build_maj_ver == "3" && conda_build_min_version == "0") { + if (conda_build_maj_ver == "3" && conda_build_min_ver == "0") { println("conda-build major version ${conda_build_maj_ver} detected. Applying bugfix patch.") def filename = "${this.conda_install_dir}/lib/python${PY_VERSION}/" + "site-packages/conda_build/config.py" |