mirror of https://github.com/hashicorp/packer
parent
83162717ed
commit
049e1bbf73
@ -1,2 +1,4 @@
|
|||||||
|
* text=auto
|
||||||
common/test-fixtures/root/* eol=lf
|
*.go text eol=lf
|
||||||
|
*.sh text eol=lf
|
||||||
|
common/test-fixtures/root/* eol=lf
|
||||||
|
|||||||
@ -1,14 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Check gofmt
|
for f in $@; do
|
||||||
echo "==> Checking that code complies with gofmt requirements..."
|
[ -n "`dos2unix 2>/dev/null < $f | gofmt -s -d`" ] && echo $f
|
||||||
gofmt_files=$(gofmt -s -l ${@})
|
done
|
||||||
if [[ -n ${gofmt_files} ]]; then
|
|
||||||
echo 'gofmt needs running on the following files:'
|
|
||||||
echo "${gofmt_files}"
|
|
||||||
echo "You can use the command: \`make fmt\` to reformat code."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
echo "Check passed."
|
|
||||||
|
|
||||||
|
# always return success or else 'make' will abort
|
||||||
exit 0
|
exit 0
|
||||||
|
|||||||
Loading…
Reference in new issue