You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
336 B
14 lines
336 B
4 years ago
|
#!/bin/sh
|
||
|
set -eu
|
||
|
|
||
|
version_go=1.13 # https://golang.org/dl/
|
||
|
version_bootstrap=20171003 # https://golang.org/doc/install/source#go14
|
||
|
|
||
|
mkdir -p download
|
||
|
cd download
|
||
|
|
||
|
wget -c "https://dl.google.com/go/go$version_go.src.tar.gz"
|
||
|
wget -c "https://dl.google.com/go/go1.4-bootstrap-$version_bootstrap.tar.gz"
|
||
|
|
||
|
sha256sum -c ../download.sha256
|