aboutsummaryrefslogtreecommitdiffstats
path: root/bin/install_tools.sh
blob: bef77f7dfc8aa556cc03eb0afa5f08d597653530 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/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 golang.org/x/lint/golint
fi
if ! which gosec >/dev/null 2>&1; then
  go get github.com/securego/gosec/cmd/gosec/...
fi