0
Fork 0
mirror of https://github.com/willnorris/imageproxy.git synced 2024-12-16 21:56:43 -05:00

go.mod: group replacements into a single block

This commit is contained in:
Will Norris 2019-09-07 21:41:14 +00:00
parent bee1a2766a
commit 785c5bddd6

20
go.mod
View file

@ -35,16 +35,18 @@ require (
willnorris.com/go/gifresize v1.0.0
)
// temporary fix to https://github.com/golang/lint/issues/436 which still seems to be a problem
replace github.com/golang/lint => github.com/golang/lint v0.0.0-20181217174547-8f45f776aaf1
replace (
// replace git.apache.org with github.com/apache (which is the upstream master
// anyway), since git.apache.org is offline. v0.12.0 is the latest release, but
// go complains about "github.com/apache/thrift@v0.12.0 used for two different
// module paths". Instead we move one commit ahead.
git.apache.org/thrift.git => github.com/apache/thrift v0.12.1-0.20190107215100-e824efcb7935
// local copy of envy package without cobra support
replace github.com/jamiealquiza/envy => ./third_party/envy
// temporary fix to https://github.com/golang/lint/issues/436 which still seems to be a problem
github.com/golang/lint => github.com/golang/lint v0.0.0-20181217174547-8f45f776aaf1
// replace git.apache.org with github.com/apache (which is the upstream master
// anyway), since git.apache.org is offline. v0.12.0 is the latest release, but
// go complains about "github.com/apache/thrift@v0.12.0 used for two different
// module paths". Instead we move one commit ahead.
replace git.apache.org/thrift.git => github.com/apache/thrift v0.12.1-0.20190107215100-e824efcb7935
// local copy of envy package without cobra support
github.com/jamiealquiza/envy => ./third_party/envy
)
go 1.13