Marcel Telka
2024-04-05 f228266143fa00a0d993ef25540014f5fea6ca10
commit | author | age
531cdb 1 #!/usr/bin/bash
TW 2
3 GOLANG_ARCHIVE="go1.19.5.illumos-amd64.tar.gz"
4
5 if ! [ -f "${GOLANG_ARCHIVE}" ]; then
6     wget "https://illumos.org/downloads/${GOLANG_ARCHIVE}" -O ${GOLANG_ARCHIVE}
7 fi
8
9 mkdir -p go_bootstrap
10
11 if ! [ -f "go_bootstrap/bin" ]; then
12     gtar -C go_bootstrap -xzf ${GOLANG_ARCHIVE}
13 fi
14