cortesi / devd

A local webserver for developers
MIT License
3.43k stars 145 forks source link

go installation command fails #82

Closed JESii closed 6 years ago

JESii commented 6 years ago

I tried the go installation command and got this:

go get github.com/cortesi/devd/cmd/dev
package github.com/cortesi/devd/cmd/dev: cannot find package "github.com/cortesi/devd/cmd/dev" in any of:
    /usr/local/go/src/github.com/cortesi/devd/cmd/dev (from $GOROOT)
    /Users/jseidel/dev/go-lang/src/github.com/cortesi/devd/cmd/dev (from $GOPATH)

~/dev$ echo $GOPATH
/Users/jseidel/dev/go-lang
~/dev$ echo $GOROOT

I must be missing something?

cortesi commented 6 years ago

Did you make a typo? There seems to be a character missing in that URL. It should be:

go get github.com/cortesi/devd/cmd/devd

JESii commented 6 years ago

Ah... cut and paste error; my bad. Sorry. The other approach worked. Thanks!