make
-ing requires bootstrapping, which globally installs various Go tools
#1209
Labels
make
-ing requires bootstrapping, which globally installs various Go tools
#1209
Hello!
Issue details
Running
make
fails, unless a number of go tools likegoimports
,govulncheck
etc. are installed.It is required to run
make bootstrap
first, which (globally) installs the latest version of these tools on the machine. This is not ideal either, it shouldn't be necessary to globally install new software. Furthermore, a developer might intentionally have an older version of those tools installed, and shouldn't be required to upgrade / downgrade tooling just to runmake
here.I suggest to remove the
bootstrap
step altogether, and usego run <import path>@<version>
instead. PR incoming.Why is this needed?
More frictionless usage of this repo.
The text was updated successfully, but these errors were encountered: