started working on the templating system
[VSCPweb/.git] / getter.sh
1 #/usr/bin/env bash
2 wget https://go.dev/dl/go1.20.6.linux-amd64.tar.gz
3 rm -rf /usr/local/go && tar -C /usr/local -xzf go1.20.6.linux-amd64.tar.gz
4 export PATH=$PATH:/usr/local/go/bin
5 rm go1.20.6*
6 go version