Fix check_golang() issue.

This commit is contained in:
Shishir Mahajan 2020-07-09 18:37:57 -07:00
parent 653fd71988
commit 70a2880ebc
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A

View File

@ -3,7 +3,6 @@
set -euo pipefail
export CONTAINERD_VERSION=1.3.4
export GOBIN="/usr/local/go/bin/go"
export CLEANUP_CONTAINERD=false
main() {
@ -187,7 +186,7 @@ mv containerd.service /lib/systemd/system/containerd.service
check_golang() {
set +e
stat $GOBIN >/dev/null 2>&1
go version >/dev/null 2>&1
rc=$?
set -e
if [ $rc -ne 0 ];then