-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dep Build Fails #120
Comments
it seems like your You could try deleting type Err []ErrMsg and not type Err struct {
errs []ErrMsg
mux *sync.Mutex
} Let me know how that goes. |
I trashed the entire vendor dir and Gopkg.lock, re-ran dep ensure, and still get the same thing. Trying some other things... |
Sounds like this dep caveat suggests you need to update your Gopkg.toml file. Adding this to my Gopkg.toml has resolved this issue. [[override]]
name = "github.com/bdlm/errors"
version = "=0.1.0"
[[override]]
name = "github.com/bdlm/log"
version = "=0.1.0" |
Ahh, I see! I was under the impression that I haven't really been keeping up to date on the dependency management ecosystem for a while, but I have pinned the correct versions of those packages in the |
I just got bitten by this too when I rebuilt my containers 😃 I haven't been using I'm now just using my fork of your I know that |
I'm excited to play with them. This package will probably be my first stab at it. |
What version of
go-chrome
are you using (tag, hash, etc.)?What behavior do you expect? What are you trying to accomplish?
go build
worksWhat behavior are you experiencing instead?
The text was updated successfully, but these errors were encountered: