isacikgoz / tldr

fast and interactive tldr client written with go
https://isacikgoz.me/tldr/
MIT License
1.38k stars 48 forks source link

Go get fails with "no Go files in ..." #20

Closed MatthewScholefield closed 4 years ago

MatthewScholefield commented 4 years ago

Not sure if I'm missing something, but I'm getting the following output when I try to install with go get:

$ go get -u github.com/isacikgoz/tldr
package github.com/isacikgoz/tldr: no Go files in /home/user/go/src/github.com/isacikgoz/tldr

I'm not familiar with how go packages are formatted, but it looks like it cloned the repo properly to /home/user/go/src/github.com/isacikgoz/tldr.

isacikgoz commented 4 years ago

Hey @MatthewScholefield , thanks for the feedback. It is my bad that I forgot to update the README file after I updated the project structure. Sorry about that.

You need to use:

go get github.com/isacikgoz/tldr/cmd/tldr

instead of

go get github.com/isacikgoz/tldr
MatthewScholefield commented 4 years ago

Thanks!

cevabveremedi commented 3 years ago

Seems like you also forgot to update that command on your website: https://isacikgoz.me/tldr/installation/

Btw tldr++ is literally a lifesaver for Linux beginners like me, thanks for the good work!