编译golang的module项目,自建module项目出现linux_amd64/link: fingerprint mismatch 错误时的解决办法
``` shell
go build: -i flag is deprecated
# command-line-arguments
/usr/local/go/pkg/tool/linux_amd64/link: fingerprint mismatch: xxx111111xxx/xxx111111xxx has 796101b6c7f54eaf, import from xxx222222xxx/xxx222222xxx expecting b0c3b0b368b428c7
Compilation finished with exit code 2
```
出现这种错误是由于module中引用的版本不一致导致的。 找到依赖的自定义module库(xxx222222xxx/xxx222222xxx )源码目录下,
***执行 go mod verify 即可解决!!!***
有疑问加站长微信联系(非本文作者))