Closed stanislas-m closed 6 years ago
I tried to create another app using the same steps to reproduce, and it solved my problem. I don't know why, but eh, it works.
I had the same issue today. In my case, it was because I forgot to export GO111MODULE=on
and my project is using go module.
I am putting this here because I was digging from 2 hours now and maybe it could help someone else :-)
Description
I'm using Go modules with go 1.11.1. When using
buffalo dev
with a go modules project, the command fails trying to rebuild the Go standard lib.Steps to Reproduce the Problem
go clean -cache
(I tested something on an unrelated project before)buffalo dev
to build the project.Expected Behavior
The project builds with no error.
Actual Behavior
The command crashes trying to recompile Go standard lib. It seems this is a known behavior: https://github.com/golang/go/issues/27285.
Produces the same output, but removing the
-i
flag work.Info