aboutsummaryrefslogtreecommitdiffstats
path: root/bin/install_tools.sh
blob: ca0a04b023a40f354111895e114033de4251e6d4 (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 golang.org/x/lint/golint
fi