forked from imumesh18/dev-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgolang.sh
54 lines (38 loc) · 1.14 KB
/
golang.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env bash
#Exit on error
set -e
sudo -v
#INSTALL GO LANGUAGE
sudo apt install golang-go -y
#Download the Go language binary archive file
wget https://storage.googleapis.com/golang/go1.9.2.linux-amd64.tar.gz
#Extract the downloaded archive
sudo tar -xvf go1.9.2.linux-amd64.tar.gz
#install it to the /usr/local directory
sudo mv go /usr/local
#SETUP GO ENVIRONMENT
#location where Go package is installed on your system
sudo echo "export GOROOT=/usr/local/go" | sudo tee -a ~/.profile
#location of your work directory
sudo echo "export GOPATH=$HOME" | sudo tee -a ~/.profile
#to access go binary system wide
sudo echo "export PATH=$PATH:/usr/local/go/bin" | sudo tee -a ~/.profile
#VERIFY INSTALLATION
echo -n "Verifying Golang installation... "
echo
GO_VERSION="$(go version)"
if [[ "$GO_VERSION" == "go version go1.9.2 linux/amd64" ]]; then
echo -e "\\033[0;32mOK"
echo
echo "Golang is successfully installed!"
echo
go version
echo -e "\\033[0m"
exit 0
else
echo -e "\\033[0;31mFAILED"
echo
echo "$0: Lol! Something went wrong, try to fix yourself else report an issues"
echo -e "\\033[0m"
exit 1
fi