Equanox/gotron

checksum mismatch

Opened this issue · 2 comments

Hi,

Sorry one more thing!!!

I am trying to build the sample app for windows. And I get checksum mismatch first

go: verifying github.com/otiai10/copy@v0.0.0-20180813032824-7e9a647135a1: checksum mismatch
	downloaded: h1:A7kMXwDPBTfIVRv2l6XV3U6Su3SzLUzZjxnDDQVZDIY=
	go.sum:     h1:QJNFh2XEtzwESNsblZgBuCsv38DU5vC/u+5DNBekwJM=

Do you have any idea how to tackle this?

BTW, go version = 1.11 & OS = Mojave 10.14.2

Might be related..
golang/go#27925

Will be investigated.

This seems to be a issue when a go.sum file was created on a different OS. From your comment i guess you tried to use gotron-builder --win , but i'm not sure whether you used it inside a Equanox/gotron repo with our provided example or created a new repo and used it from there.

There are 2 possible fixes for this.

  1. Delete go.sum in Equanox/gotron and let go create a new one next time you run go build (This might not be possible)
  2. go clean -modcache

Does this fix your problem?