From d2e4123f3e2e58da8be181a0a542e3dcc1313e16 Mon Sep 17 00:00:00 2001 From: aeneasr <3372410+aeneasr@users.noreply.github.com> Date: Thu, 1 Apr 2021 12:13:53 +0200 Subject: [PATCH] docs: update install instructions --- docs/docs/install.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/install.md b/docs/docs/install.md index 20a7e7965..bdd73de32 100644 --- a/docs/docs/install.md +++ b/docs/docs/install.md @@ -69,7 +69,7 @@ $ keto help ## Building from Source If you wish to compile Ory Keto yourself, you need to install and set up -[Go 1.12+](https://golang.org/) and add `$GOPATH/bin` to your `$PATH`. +[Go 1.16+](https://golang.org/) and add `$GOPATH/bin` to your `$PATH`. The following commands check out the latest release tag of Ory Keto, compile it, and set up flags so that `keto version` works as expected. Please note that this @@ -78,6 +78,6 @@ will only work with a Linux shell like bash or sh. ```shell $ go get -d -u github.com/ory/keto $ cd $(go env GOPATH)/src/github.com/ory/keto -$ GO111MODULE=on make install-stable +$ make install $ $(go env GOPATH)/bin/keto help ```