This repository was archived by the owner on Sep 9, 2020. It is now read-only.
This repository was archived by the owner on Sep 9, 2020. It is now read-only.
status shows incorrect reason for lock mismatch #1193
Closed
Description
What version of dep
are you using (dep version
)?
v0.3.1-16-g5e004f4
I tried updating with go get -u github.com/golang/dep/cmd/dep
What dep
command did you run?
dep status
What did you expect to see?
normal dep status output
What did you see instead?
Lock inputs-digest mismatch due to the following packages missing from the lock:
PROJECT MISSING PACKAGES
golang.org/x/net [golang.org/x/net/websocket]
github.com/revel/revel [github.com/revel/revel github.com/revel/revel/testing]
github.com/revel/modules [github.com/revel/modules/jobs/app/jobs]
This happens when a new import is added. Run `dep ensure` to install the missing packages.
In my Gopkg.toml I have:
ignored = [
...
"github.com/revel/modules/jobs/app/jobs",
"github.com/revel/revel",
"github.com/revel/revel/testing",
"golang.org/x/net/websocket",
...
]