[go-nuts] Go module and local dependencies

2019-08-31 Thread t hepudds
A few quick comments: 1. Try 'go build ./...' from the root directory of the module to build all the packages in the module. 'go build' without any arguments is the same as 'go build .' which means just build the current directory/package. 2. With only one go.mod, you should not need a

[go-nuts] Go module and local dependencies

2019-08-31 Thread Guillaume Lescure
Hi, I spend my day trying to build a new project in Go using the new Go module system. I didn't succeed so I'm kind of upset because I never waste that much time for something that simple before. The project : I try to use Go module only so no environment variable anywhere. There are 1 library