7 lines
159 B
Plaintext
7 lines
159 B
Plaintext
|
#!/bin/sh
|
||
|
PROJDIR=$(cd `dirname $0`/.. && pwd)
|
||
|
|
||
|
echo "Installing gometalinter and linters..."
|
||
|
go get github.com/alecthomas/gometalinter
|
||
|
gometalinter --install
|