aboutsummaryrefslogtreecommitdiffstats
path: root/bin/install_tools.sh
blob: e22056b4d326fc53a1a16d82ef926a6c55f1bb39 (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/sh

if ! which dep >/dev/null 2>&1; then
  go get -u github.com/golang/dep/cmd/dep
fi
if ! which golint >/dev/null 2>&1; then
  go get -u github.com/golang/lint/golint
fi