You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
go get -d -u github.com/ory/keto fails. It appears to be related to github.com/ory/x/viperx no longer existing in the latest version of https://github.com/ory/x. This feels like it may be an oversight in the versioning scheme of https://github.com/ory/x, but its README does warn of this.
After circumventing this (by removing the -u flag) github.com/ory/keto is still absent from $GOPATH/src. As of go 1.16 module-aware mode is the default. go get -d -u github.com/ory/keto no longer downloads the source to $GOPATH/src unless you overwrite GO111MODULE to auto or off.
Describe the bug
The Building from Source instructions do not work as-is.
go get -d -u github.com/ory/keto
fails. It appears to be related togithub.com/ory/x/viperx
no longer existing in the latest version of https://github.com/ory/x. This feels like it may be an oversight in the versioning scheme of https://github.com/ory/x, but its README does warn of this.-u
flag)github.com/ory/keto
is still absent from$GOPATH/src
. As of go 1.16 module-aware mode is the default.go get -d -u github.com/ory/keto
no longer downloads the source to$GOPATH/src
unless you overwriteGO111MODULE
to auto or off.Reproducing the bug
Steps to reproduce the behavior:
Running through instructions here: https://github.com/ory/keto/blob/0ac4fe1667ee1edd133fe3f117e204e3144f6c78/docs/docs/install.md#building-from-source
Server logs
Server configuration
Expected behavior
Install documentation would run for the default go installation.
Environment
Additional context
My suggestion: update the docs to ask folks to just clone the repo and run
make install
. Using this approach I had no problems.The text was updated successfully, but these errors were encountered: