when making deno, it crash with:
go build -o deno ./cmd
os.go:7:2: cannot find package "github.com/spf13/afero" in any of:
/usr/local/go/src/github.com/spf13/afero (from $GOROOT)
/home/chenquan/Workspace/go/src/github.com/spf13/afero (from $GOPATH)
Makefile:40: recipe for target 'deno' failed
how about adding a package manager like dep ?
In your case, you just need to go get the afero.
Yes! I fixed this by go get, but does this project needs packages manager? I think this is a high priority question.
A package manager is exactly anti pattern to the goals of the project, but that deno being difficult to build is problem that is not trying to be solved right now as that would only increase the noise that is difficult for the team to manage. It being difficult is an unintentional benefit at the moment.
Close as off-topic : )
Most helpful comment
A package manager is exactly anti pattern to the goals of the project, but that deno being difficult to build is problem that is not trying to be solved right now as that would only increase the noise that is difficult for the team to manage. It being difficult is an unintentional benefit at the moment.