download Go 1.20.5 not 1.20.4

This commit is contained in:
Earl Warren 2023-07-01 23:21:05 +02:00
parent a2512b09ed
commit 9cde43f8ff
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -13,7 +13,7 @@ function dependency_go() {
if ! which go > /dev/null ; then
apt-get update
apt-get install -y -qq wget tar
wget --quiet https://go.dev/dl/go1.20.4.linux-amd64.tar.gz
wget --quiet https://go.dev/dl/go1.20.5.linux-amd64.tar.gz
tar zxf go1.20.5.linux-amd64.tar.gz
export PATH=$PATH:$(pwd)/go/bin
fi