sourcegraph / thyme

Automatically track which applications you use and for how long.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Command for installing Thyme did not work

cdw9 opened this issue · comments

The README has

$ go get -u github.com/sourcegraph/thyme/cmd/thyme

but to actually install, I had to use this URL:

$ go get -u github.com/sourcegraph/thyme/tree/master/cmd/thyme

The first command silently failed, and I would get command not found: thyme when trying to run a thyme command.

Hi

If GOPATH is not added to your PATH (see https://golang.org/doc/code.html#GOPATH) then you will need to run the thyme command from $GOPATH/bin/thyme as that is where it will be installed.

ok, seems I just set the GOPATH incorrectly. thanks