Adi Polak
go get <http://github.com/rakyll/statik|github.com/rakyll/statik>
returned the following message:
go get: installing executables with 'go get' in module mode is deprecated.
To adjust and download dependencies of the current module, use 'go get -d'.
To install using requirements of the current module, use 'go install'.
To install ignoring the current module, use 'go install' with a version,
like 'go install <http://example.com/cmd@latest|example.com/cmd@latest>'.
For more information, see <https://golang.org/doc/go-get-install-deprecation>
or run 'go help get' or 'go help install'.
which one is should I use to install statik? go get -d
or go install
?Barak Amar
Barak Amar
tools.go
in our project that will get the required deps for you when you run make
.Barak Amar
Barak Amar
go.sum
and when you build the project go
will fetch them for you.Adi Polak
make
in the contribution docs, should I open a pr for it?Barak Amar