mirror of https://github.com/aldy505/dotfiles.git
29 lines
653 B
Bash
Executable File
29 lines
653 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
VERSION="1.16.7"
|
|
|
|
function install () {
|
|
echo "installing go"
|
|
sudo ~
|
|
wget https://golang.org/dl/go$VERSION.linux-amd64.tar.gz
|
|
sudo rm -rf /usr/local/go
|
|
sudo tar -C /usr/local -xzf go$VERSION.linux-amd64.tar.gz
|
|
sudo rm go$VERSION.linux-amd64.tar.gz
|
|
sudo rm $HOME/.config/go
|
|
sudo mkdir $HOME/.config/go
|
|
sudo ln -s ${DOTFILES_PATH}/go/env $HOME/.config/go/env
|
|
}
|
|
|
|
function uninstall () {
|
|
echo "uninstalling go"
|
|
sudo rm -rf /usr/local/go
|
|
}
|
|
|
|
if [ "$1" == "install" ]; then
|
|
install
|
|
elif [ "$1" == "uninstall" ] || [ "$1" == "remove" ]; then
|
|
uninstall
|
|
else
|
|
echo "please specify args with install or uninstall"
|
|
fi
|