mirror of
https://github.com/mikefarah/yq.git
synced 2024-12-19 20:19:04 +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
|