the go get github.com/BenLubar/steamworks command fails because one of the dependencies of this project fails the version check from the go.mod file.
PS D:\GoProj\xxxxxx> go get github.com/BenLubar/steamworks
go: github.com/BenLubar/steamworks upgrade => v0.0.0-20181009034830-72424b225176
go get: github.com/BenLubar/steamworks@v0.0.0-20181009034830-72424b225176 requires
golang.org/x/tools@v0.0.0-20181009034425-a2b3f7f249e9: invalid pseudo-version: does not match version-control timestamp (expected 20181008205924)
replace keyword in go.mod may be help
replace golang.org/x/tools v0.0.0-20181009034425-a2b3f7f249e9 => golang.org/x/tools v0.0.0-20181008205924-a2b3f7f249e9
Greetings,
the
go get github.com/BenLubar/steamworks
command fails because one of the dependencies of this project fails the version check from the go.mod file.