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