Merge pull request #2672 from Gfloresechaiz/Gfloresechaiz-patch-1

INSTALL.md : bump to go.1.11.5 on Linux
This commit is contained in:
Johan T. Halseth 2019-02-22 12:56:27 +01:00 committed by GitHub
commit b93b4f2974
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -35,31 +35,31 @@
(x86-64) (x86-64)
``` ```
wget https://dl.google.com/go/go1.11.4.linux-amd64.tar.gz wget https://dl.google.com/go/go1.11.5.linux-amd64.tar.gz
sha256sum go1.11.4.linux-amd64.tar.gz | awk -F " " '{ print $1 }' sha256sum go1.11.5.linux-amd64.tar.gz | awk -F " " '{ print $1 }'
``` ```
The final output of the command above should be The final output of the command above should be
`fb26c30e6a04ad937bbc657a1b5bba92f80096af1e8ee6da6430c045a8db3a5b`. If it `ff54aafedff961eb94792487e827515da683d61a5f9482f668008832631e5d25`. If it
isn't, then the target REPO HAS BEEN MODIFIED, and you shouldn't install isn't, then the target REPO HAS BEEN MODIFIED, and you shouldn't install
this version of Go. If it matches, then proceed to install Go: this version of Go. If it matches, then proceed to install Go:
``` ```
tar -C /usr/local -xzf go1.11.4.linux-amd64.tar.gz tar -C /usr/local -xzf go1.11.5.linux-amd64.tar.gz
export PATH=$PATH:/usr/local/go/bin export PATH=$PATH:/usr/local/go/bin
``` ```
(ARMv6) (ARMv6)
``` ```
wget https://dl.google.com/go/go1.11.4.linux-armv6l.tar.gz wget https://dl.google.com/go/go1.11.5.linux-armv6l.tar.gz
sha256sum go1.11.4.linux-armv6l.tar.gz | awk -F " " '{ print $1 }' sha256sum go1.11.5.linux-armv6l.tar.gz | awk -F " " '{ print $1 }'
``` ```
The final output of the command above should be The final output of the command above should be
`9f7a71d27fef69f654a93e265560c8d9db1a2ca3f1dcdbe5288c46facfde5821`. If it `b26b53c94923f78955236386fee0725ef4e76b6cb47e0df0ed0c0c4724e7b198`. If it
isn't, then the target REPO HAS BEEN MODIFIED, and you shouldn't install isn't, then the target REPO HAS BEEN MODIFIED, and you shouldn't install
this version of Go. If it matches, then proceed to install Go: this version of Go. If it matches, then proceed to install Go:
``` ```
tar -C /usr/local -xzf go1.11.4.linux-armv6l.tar.gz tar -C /usr/local -xzf go1.11.5.linux-armv6l.tar.gz
export PATH=$PATH:/usr/local/go/bin export PATH=$PATH:/usr/local/go/bin
``` ```