From a745bafc583dab7a3a951936f98e3b915a4f7d8d Mon Sep 17 00:00:00 2001 From: Alex Grintsvayg Date: Thu, 3 Oct 2019 14:09:26 -0400 Subject: [PATCH] go 1.13 --- .travis.yml | 2 +- go.mod | 2 ++ readme.md | 6 +++--- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index b8f7b7b..c9f1b44 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,7 @@ env: - GO111MODULE=on go: - - 1.11.x + - 1.13.x cache: directories: diff --git a/go.mod b/go.mod index e48d7f1..ab52dcf 100644 --- a/go.mod +++ b/go.mod @@ -42,3 +42,5 @@ require ( google.golang.org/appengine v1.6.2 // indirect gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect ) + +go 1.13 diff --git a/readme.md b/readme.md index 7084784..781f500 100644 --- a/readme.md +++ b/readme.md @@ -13,11 +13,11 @@ coming soon ## Running from Source -This project requires [Go v1.10](https://golang.org/doc/install) or higher. +This project requires [Go v1.11](https://golang.org/doc/install) or higher because it uses Go modules. ``` -go get -u github.com/lbryio/reflector.go -cd "$(go env GOPATH)/src/github.com/lbryio/reflector.go" +git clone git@github.com:lbryio/reflector.go.git +cd reflector.go make ./bin/prism-bin ```