Last active
December 15, 2019 09:51
-
-
Save sivsivsree/d5ee8187d0cf10530454a117aaa43300 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| if [ -z $SUDO_USER ] | |
| then | |
| echo "===== Script need to be executed with sudo ====" | |
| exit 0 | |
| fi | |
| echo "=======Set up go======" | |
| sudo apt-get update | |
| sudo apt-get -y install golang-1.10-go | |
| mv /usr/lib/go-1.10 /usr/local | |
| mv /usr/local/go-1.10 /usr/local/go | |
| # If GOROOT already set then DO Not set it again | |
| if [ -z $GOROOT ] | |
| then | |
| echo "export GOROOT=/usr/local/go" >> ~/.profile | |
| echo "export PATH=$PATH:/usr/local/go/bin" >> ~/.profile | |
| echo "export GOPATH=`pwd`/../gopath" >> ~/.profile | |
| echo "======== Updated .profile with GOROOT/GOPATH/PATH====" | |
| echo "export GOROOT=/usr/local/go" >> ~/.bashrc | |
| echo "export GOPATH=`pwd`/../gopath" >> ~/.bashrc | |
| echo "======== Updated .profile with GOROOT/GOPATH/PATH====" | |
| else | |
| echo "======== No Change made to .profile =====" | |
| fi | |
| echo "======= Done. PLEASE LOG OUT & LOG Back In ====" | |
| echo "Then validate by executing 'go version'" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment