From addf5e73ebf87b8214c456f9ae72767538d72164 Mon Sep 17 00:00:00 2001 From: Bas Couwenberg Date: Wed, 16 Oct 2019 07:25:14 +0200 Subject: [PATCH] Update tutorial to use GO 1.13 (for mods feature). --- docs/installation.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index 88bd6dcaa..9a2ee80b7 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -32,14 +32,14 @@ For developing CGRateS and switching between its versions, we are using the **ne First we have to setup the GO Lang to our OS. Feel free to download the latest GO binary release from https://golang.org/dl/ -In this Tutorial we are going to install Go 1.11 +In this Tutorial we are going to install Go 1.13 :: rm -rf /usr/local/go cd /tmp - wget https://dl.google.com/go/go1.11.linux-amd64.tar.gz - sudo tar -xvf go1.11.0.linux-amd64.tar.gz -C /usr/local/ + wget https://dl.google.com/go/go1.13.1.linux-amd64.tar.gz + sudo tar -xvf go1.13.1.linux-amd64.tar.gz -C /usr/local/ export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin 3.2.2 Build CGRateS from Source