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
@wendal the install fails on macOS 10.14 Mojave (and probably other systems as well) if you don't do the fsnotify install first. This needs to be added to the install docs.
The Error
$ go get -u github.com/wendal/gor
$ go install github.com/wendal/gor/gor
../.local/share/go/lib/src/github.com/wendal/gor/gor/gor.go:8:2: cannot find package "github.com/howeyc/fsnotify" in any of:
/usr/local/Cellar/go/1.14/libexec/src/github.com/howeyc/fsnotify (from $GOROOT)
/Users/runeimp/.local/share/go/lib/src/github.com/howeyc/fsnotify (from $GOPATH)
The Fix
$ go get -u github.com/wendal/gor
$ go get -u github.com/howeyc/fsnotify
$ go install github.com/wendal/gor/gor
go get github.com/howeyc/fsnotify
before
go install github.com/wendal/gor/gor
The text was updated successfully, but these errors were encountered: