mirror of
https://github.com/hashicorp/packer.git
synced 2026-05-19 08:25:21 -04:00
14 lines
249 B
Bash
Executable file
14 lines
249 B
Bash
Executable file
#!/bin/sh
|
|
|
|
RETVAL=0
|
|
|
|
for file in $(find . -name '*.go' -not -path './build/*')
|
|
do
|
|
if [ -n "$(gofmt -l $file)" ]
|
|
then
|
|
echo "$file does not conform to gofmt rules. Run: gofmt -s -w $file" >&2
|
|
RETVAL=1
|
|
fi
|
|
done
|
|
|
|
exit $RETVAL
|