shared-macros.mk: simplify java settings
[oi-userland.git] / components / developer / golang-121 / bootstrap_get.sh
blob64d9ad30373aac849e80e9340bdf5802fb043c8f
1 #!/usr/bin/bash
3 GOLANG_ARCHIVE="go1.19.5.illumos-amd64.tar.gz"
5 if ! [ -f "${GOLANG_ARCHIVE}" ]; then
6 wget "https://illumos.org/downloads/${GOLANG_ARCHIVE}" -O ${GOLANG_ARCHIVE}
7 fi
9 mkdir -p go_bootstrap
11 if ! [ -f "go_bootstrap/bin" ]; then
12 gtar -C go_bootstrap -xzf ${GOLANG_ARCHIVE}