go-libvirt-plain/scripts/golint.sh

13 lines
157 B
Bash
Raw Normal View History

2016-05-20 03:05:37 +03:00
#!/bin/bash
# Verify that all files are correctly golint'd.
EXIT=0
GOLINT=$(golint ./...)
if [[ ! -z $GOLINT ]]; then
echo $GOLINT
EXIT=1
fi
exit $EXIT