upgrade go v1.21.1

This commit is contained in:
Earl Warren 2023-10-04 15:18:17 +02:00
parent c2b00566d0
commit 7f23c0bd5f
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -12,14 +12,14 @@ DIR=$(mktemp -d)
trap "rm -fr $DIR" EXIT trap "rm -fr $DIR" EXIT
function dependency_go() { function dependency_go() {
go_version="1.21.0.linux-amd64" # Set the desired Go version here go_version="1.21.1.linux-amd64" # Set the desired Go version here
if ! which go > /dev/null ; then if ! which go > /dev/null ; then
apt-get update apt-get update
apt-get install -y -qq wget tar apt-get install -y -qq wget tar
wget --quiet "https://go.dev/dl/go$go_version.tar.gz" wget --quiet "https://go.dev/dl/go$go_version.tar.gz"
tar zxf "go$go_version.tar.gz" tar zxf "go$go_version.tar.gz"
export PATH="$PATH:$(pwd)/go/bin" export PATH="$(pwd)/go/bin:$PATH"
fi fi
} }