Skip to content

Commit 9292a8c

Browse files
committed
hacks for go1.9
1 parent a128327 commit 9292a8c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hack/lib/util/golang.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ function os::golang::verify_go_version() {
1111
if [[ "${go_version[2]}" != go1.8* ]]; then
1212
os::log::info "Detected go version: ${go_version[*]}."
1313
if [[ -z "${PERMISSIVE_GO:-}" ]]; then
14-
os::log::fatal "Please install Go version ${OS_REQUIRED_GO_VERSION} or use PERMISSIVE_GO=y to bypass this check."
14+
os::log::warning "Please install Go version ${OS_REQUIRED_GO_VERSION} or use PERMISSIVE_GO=y to bypass this check."
15+
return 0
1516
else
1617
os::log::warning "Detected golang version doesn't match required Go version."
1718
os::log::warning "This version mismatch could lead to differences in execution between this run and the CI systems."

0 commit comments

Comments
 (0)