Another pass

This commit is contained in:
Dan Sosedoff 2018-03-16 20:15:06 -05:00
parent d153d47604
commit 2398035e53

View File

@ -1,11 +1,13 @@
#!/bin/bash
# Run the fmt on bindata so it does not trigger failure
go fmt ./pkg/data/bindata.go > /dev/null
# Get list of offending files
files="$(go fmt ./pkg/...)"
ignore="pkg/data/bindata.go"
files=${files[@]/$ignore}
if [ -n "$files" ]; then
echo "Go code is not formatted: $files"
echo "Go code is not formatted:"
for file in $files; do
echo "----> $file"
done