From e11e4bcbc7a6d0b8ad831f226bae85b90d53261c Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Fri, 12 Jun 2020 22:47:47 -0700 Subject: [PATCH] stick to go1.13.x for mint --- mint/preinstall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mint/preinstall.sh b/mint/preinstall.sh index 52c56c218..3552a5688 100755 --- a/mint/preinstall.sh +++ b/mint/preinstall.sh @@ -38,7 +38,7 @@ $APT update $APT install gnupg ca-certificates # download and install golang -GO_VERSION="1.14.3" +GO_VERSION="1.13.12" GO_INSTALL_PATH="/usr/local" download_url="https://storage.googleapis.com/golang/go${GO_VERSION}.linux-amd64.tar.gz" if ! $WGET --output-document=- "$download_url" | tar -C "${GO_INSTALL_PATH}" -zxf -; then