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
Because you have referenced the gopkg.in version in your imports it's causing anything that is importing your code and using modules to break.
go get: upgrading gopkg.in/[email protected]: gopkg.in/[email protected]: invalid version: go.mod has non-....v1 module path "github.com/fsnotify/fsnotify" at revision v1.4.8
ERROR: Service 'ginkgo-base' failed to build: The command '/bin/sh -c go get -u github.com/onsi/ginkgo/ginkgo && go get -u github.com/onsi/gomega/... && export PATH=$PATH:$HOME/gopath/bin' returned a non-zero code: 1
There's not really any blame here, I'm just giving you a heads up as i'm sure others might find problems with this!
The text was updated successfully, but these errors were encountered:
flyhard
pushed a commit
to UnikumAB/tail
that referenced
this issue
Mar 17, 2020
* Migrated to go mod as fsnotify has moved away from gopkg.in
* Updated vendor folder so it works with go version <= 1.11
* Added extra Dockerfile to test building with go 1.9 as that is the lowest, working version now
Hi,
There's an issue with importing fsnotify using gopkg.in/fsnotify.v1
They have moved away from gopkg.in but have released a new version that is causing issues. (It should be imported using the github url btw)
See fsnotify/fsnotify#328
Because you have referenced the gopkg.in version in your imports it's causing anything that is importing your code and using modules to break.
There's not really any blame here, I'm just giving you a heads up as i'm sure others might find problems with this!
The text was updated successfully, but these errors were encountered: