Skip to content

Commit

Permalink
the module name listed in go.mod was for ugorji/go instead of
Browse files Browse the repository at this point in the history
hashicorp/go-msgpack. this caused errors when using this module:
```
go: github.com/hashicorp/[email protected]: parsing go.mod: unexpected module path "github.com/ugorji/go"
```

this change is consistent with the go.mod contents on the master branch
of hashicorp/go-msgpack
  • Loading branch information
cgbaker committed Nov 3, 2019
1 parent 23165f7 commit cc7dbc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/ugorji/go
module github.com/hashicorp/go-msgpack

go 1.13

Expand Down

0 comments on commit cc7dbc9

Please sign in to comment.