10 lines
128 B
Bash
Executable file
10 lines
128 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cd `dirname $0`/..
|
|
|
|
go get golang.org/x/lint/golint
|
|
go get github.com/fzipp/gocyclo
|
|
|
|
exec ./hooks/pre-commit
|