diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2017-04-18 13:41:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-18 13:41:11 -0400 |
commit | 8923d88d42e14f9853cb79f87d403e971d11ef8e (patch) | |
tree | 970782d412b38251583b50200c814e5cb7dd17fa | |
parent | e044cf08401900f16bf502c806da5b60a3b19aaa (diff) | |
parent | 3dbcd4d3cf22ae3ec4c23426c8c810a71f3ca962 (diff) | |
download | build_control-8923d88d42e14f9853cb79f87d403e971d11ef8e.tar.gz |
Merge pull request #7 from astroconda/typo_fix
Typo fix
-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 df7f780..3c2080a 100644 --- a/jenkins/dispatch.groovy +++ b/jenkins/dispatch.groovy @@ -60,7 +60,7 @@ node(LABEL) { println("PY_VERSION = ${PY_VERSION}") assert PY_VERSION != null assert PY_VERSION != "py_version-DEFAULTVALUE" - this.py_maj_version = "${PY_VERSION.split.(".")[0]}" + this.py_maj_version = "${PY_VERSION.split(".")[0]}" // Inherited from env() assignment performed in the generator // DSL script. |