From f305a55caeda01776bb128d3ac93da3ac8d6fc54 Mon Sep 17 00:00:00 2001 From: Rishubh Jain Date: Wed, 8 Aug 2018 13:33:46 +0530 Subject: [PATCH] Updating development guide to use golang version 1.9 With respect to https://github.com/gluster/glusterd2/pull/1123. Using golang 1.9 or higher instead of 1.8. @prashanthpai Please check if we need to make changes in any other documentation. --- doc/development-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/development-guide.md b/doc/development-guide.md index 1c37ed07d..f6abc8430 100644 --- a/doc/development-guide.md +++ b/doc/development-guide.md @@ -9,7 +9,7 @@ Glusterd2 is written in Go and if you are new to the language, it is **highly** ### Workspace and repository setup -1. [Download](https://golang.org/dl/) Go (>=1.8) and [install](https://golang.org/doc/install) it on your system. +1. [Download](https://golang.org/dl/) Go (>=1.9) and [install](https://golang.org/doc/install) it on your system. 1. Setup the [GOPATH](http://www.g33knotes.org/2014/07/60-second-count-down-to-go.html) environment. 1. Run `$ go get -d github.com/gluster/glusterd2` This will just download the source and not build it. The downloaded source will be at `$GOPATH/src/github.com/gluster/glusterd2`