dotfiles/scripts/go.sh

8 lines
209 B
Bash
Raw Normal View History

2021-07-25 16:13:54 +00:00
#!/bin/bash
GOVERSION="1.16.6"
wget https://golang.org/dl/go$(GOVERSIONI).linux-amd64.tar.gz
rm -rf /usr/local/go
tar -C /usr/local -xzf go$(GOVERSION).linux-amd64.tar.gz
rm go$(GOVERSION).linux-amd64.tar.gz