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