mirror of
https://github.com/mikefarah/yq.git
synced 2025-01-14 04:25:36 +00:00
10 lines
233 B
Bash
10 lines
233 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
go get -u github.com/alecthomas/gometalinter
|
||
|
go get -u golang.org/x/tools/cmd/goimports
|
||
|
go get -u github.com/mitchellh/gox
|
||
|
go get -u github.com/kardianos/govendor
|
||
|
|
||
|
# install all the linters
|
||
|
gometalinter --install --update
|