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
$ dep ensure
:
(21) ? attempt gopkg.in/fsnotify.v1 with 1 pkgs; 0 versions to try
panic: version queue is empty, should not happen
:
Actually I know the cause, I also know how to avoid it.
This is because the path of gopkg.in/fsnotify/fsnotify.v1 referred to by kinkgo's dependent library github.com/hpcloud/tail at v1.0.0 (latest) is different from the current one .
I hope to solve the root cause if possible.
Because I think that dep is still used so much and it can be predicted what vgo will be going on so I think that many users rely on dep.
The text was updated successfully, but these errors were encountered:
Thanks for reporting this problem and investigating the root cause! Hopefully, it will help other ginkgo users with the same problems.
I feel that this issue is not related to ginkgo directly and for now I am going to close it. Please, feel free to re-open the issue if you have questions or comments on this.
Hi contributers, thanks a great product!
Attempting to install with dep will fail.
Actually I know the cause, I also know how to avoid it.
This is because the path of
gopkg.in/fsnotify/fsnotify.v1
referred to by kinkgo's dependent librarygithub.com/hpcloud/tail
atv1.0.0 (latest)
is different from the current one .I make the issue about it
hpcloud/tail#146
fsnotify
https://gopkg.in/fsnotify.v1
The workaround is as follows.
Switch
source
ingopkg.in/fsnotify/fsnotify.v1
Write
Gopkg.toml
like belowsee also golang/dep#1799 (comment)
Use the master branch of
github.com/hpcloud/tail
Write
Gopkg.toml
like belowBecause master branch of
tail
already solved it.I hope to solve the root cause if possible.
Because I think that dep is still used so much and it can be predicted what vgo will be going on so I think that many users rely on dep.
The text was updated successfully, but these errors were encountered: