
The repository github.com/myitcv/gobin has already been archived, and the `go install` command accepts arguments with version suffixs starting from 1.16 (for example, go install example.com/cmd@v1.0.0). So there is no reason to continue to use gobin.
5 lines
116 B
Bash
Executable File
5 lines
116 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cd ./tools/mod || exit 2
|
|
go list --tags tools -f '{{ join .Imports "\n" }}' | xargs go install
|