Move installation scripts to install/ dir

This commit is contained in:
lachtan
2024-09-01 16:24:15 +02:00
parent 36b28ae72e
commit 420f85e31e
25 changed files with 14 additions and 30 deletions

13
install/go-tools.sh Executable file
View File

@@ -0,0 +1,13 @@
function go_install() {
local module="$1"
echo "Installing $module"
go install ${module}@latest
}
go_install golang.org/x/tools/cmd/goimports
go_install github.com/nsf/gocode
go_install golang.org/x/lint/golint
go_install github.com/godoctor/godoctor
go_install github.com/haya14busa/goplay/cmd/goplay
go_install github.com/rogpeppe/godef
go_install golang.org/x/tools/cmd/gorename