cfg/bin/update-gotools

44 lines
992 B
Text
Raw Normal View History

#!/bin/bash
set -ex
set -o pipefail
2016-07-21 13:48:49 +00:00
export GOPATH="${HOME}/gocode"
rm -rf ${GOPATH}
mkdir -p ${GOPATH}
2016-07-21 13:48:49 +00:00
# Create `.gopath` file for $PATH detection
touch ${GOPATH}/.gopath
# Install Go-dev related tools
go get -u github.com/nsf/gocode &
go get -u github.com/alecthomas/gometalinter &
go get -u github.com/mailgun/godebug &
go get -u github.com/tools/godep &
go get -u github.com/golang/dep/cmd/dep &
go get -u github.com/shuLhan/go-bindata/... &
wait
# Ensure installed tools can work
2016-07-21 13:48:49 +00:00
${GOPATH}/bin/gometalinter --install --update
vim +:GoInstallBinaries +:qall
2016-07-21 13:48:49 +00:00
2016-08-11 21:35:04 +00:00
# Re-Install hclfmt
go get -u github.com/fatih/hclfmt &
2017-01-23 09:23:22 +00:00
# Normally update non-version dependent tools
go get -u github.com/fiatjaf/jiq/cmd/jiq &
# Install vault related tools
go get -u github.com/hashicorp/vault &
go get -u github.com/Luzifer/vault-patch &
go get -u github.com/Luzifer/vault2env &
# Install own tools
go get -u github.com/Luzifer/password &
# Install packer
go get -u github.com/hashicorp/packer &
wait