mirror of
https://github.com/octoleo/syncthing.git
synced 2025-01-09 09:50:30 +00:00
12 lines
149 B
Plaintext
12 lines
149 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
GOLINTOUT=$(golint *go)
|
||
|
|
||
|
if [ ! -z "$GOLINTOUT" -o "$?" != 0 ]; then
|
||
|
echo golint failed:
|
||
|
echo $GOLINTOUT
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
go test
|