From f747c9e289b4378f487ad5b0c1076abb51c5c5a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=96stanb=C3=A4ck?= Date: Wed, 14 Jun 2017 11:49:53 +0200 Subject: [PATCH] Add note Go 1.7 is required for building from source --- content/doc/installation/from-source.en-us.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/doc/installation/from-source.en-us.md b/content/doc/installation/from-source.en-us.md index a4643f0..494ac7f 100644 --- a/content/doc/installation/from-source.en-us.md +++ b/content/doc/installation/from-source.en-us.md @@ -17,6 +17,8 @@ menu: We won't cover the basics of a Golang setup within this guide. If you don't know how to get the environment up and running you should follow the official [install instructions](https://golang.org/doc/install). +**Note**: Go version 1.7 or higher is required + ## Download First of all you have to retrieve the source code, the easiest way is to simply use directly Go for that. Just call the following commands to fetch the source and to switch into the working directory. @@ -64,8 +66,6 @@ Now it's time to build the binary, we suggest to embed the assets with the `bind TAGS="bindata" make generate build ``` -**Note**: We recommend the Go version 1.6 or higher because we are using vendoring and we don't set the required env variable for 1.5 anywhere. - ## Test After following the steps above you will have a `gitea` binary within your working directory, first you can test it if it works like expected and afterwards you can copy it to the destination where you want to store it. When you launch Gitea manually from your CLI you can always kill it by hitting `Ctrl + C`.