cloudflare / gokey

A simple vaultless password manager in Go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add hints on how to install this package

giuscri opened this issue · comments

README is showing no hints on how to install the package. After go get github.com/cloudflare/gokey there's no binary in $GOPATH/bin.

Right, that is because go get github.com/cloudflare/gokey will get you the code, not the cmdline tool.

To get the tool you need go get github.com/cloudflare/gokey/cmd/gokey

I'll update the README.

Thanks