20 lines
440 B
Bash
Executable File
20 lines
440 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Check usage.
|
|
if [ $# -ne 1 ]; then
|
|
echo "USAGE: check_gofmt <source directory>"
|
|
exit 1
|
|
fi
|
|
|
|
# Check formatting on non Godep'd code.
|
|
GOFMT_PATHS=$(find . -not -wholename "*.git*" -not -wholename "*Godeps*" -not -name "." -type d)
|
|
|
|
# Find any files with gofmt problems
|
|
BAD_FILES=$(gofmt -s -l $GOFMT_PATHS)
|
|
|
|
if [ -n "$BAD_FILES" ]; then
|
|
echo "The following files are not properly formatted:"
|
|
echo $BAD_FILES
|
|
exit 1
|
|
fi
|