Commit 8b507d8c authored by George Tankersley's avatar George Tankersley

hack: allow devel builds of go

parent a0cc59f2
...@@ -269,7 +269,7 @@ EOF ...@@ -269,7 +269,7 @@ EOF
if [[ "${TRAVIS:-}" != "true" ]]; then if [[ "${TRAVIS:-}" != "true" ]]; then
local go_version local go_version
go_version=($(go version)) go_version=($(go version))
if [[ "${go_version[2]}" < "go1.6" ]]; then if [[ "${go_version[2]}" < "go1.6" && "${go_version[2]}" != "devel" ]]; then
kube::log::usage_from_stdin <<EOF kube::log::usage_from_stdin <<EOF
Detected go version: ${go_version[*]}. Detected go version: ${go_version[*]}.
Kubernetes requires go version 1.6 or greater. Kubernetes requires go version 1.6 or greater.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment