balena-supervisor/gosuper/test_formatting.sh
Pablo Carranza Velez 84062565c4 When testing gosuper formatting, don't check the vendor directory
Signed-off-by: Pablo Carranza Velez <pablo@resin.io>
2017-06-30 23:46:17 -07:00

15 lines
295 B
Bash
Executable File

#!/bin/bash
for dir in $(find ./* -path ./vendor -prune -or -type d -print); do
errormessage=$(gofmt -l $dir)
if [ -n "$errormessage" ]; then
echo "$errormessage"
failed=1
fi
done
if [ -n "$failed" ]; then
echo "Bad formatting, run make format-gosuper to fix above errors."
exit 1
fi