mirror of https://github.com/hashicorp/packer
Revert "Merge pull request #4494 from tb3088/EOL-handling"
This reverts commitpull/6227/headdfe4f56c75, reversing changes made toe90c87f885. Revert changes to makefile and format checker
parent
dfe4f56c75
commit
2fc67f2210
@ -1,8 +1,14 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
for f in $@; do
|
||||
[ -n "`dos2unix 2>/dev/null < $f | gofmt -s -d`" ] && echo $f
|
||||
done
|
||||
# Check gofmt
|
||||
echo "==> Checking that code complies with gofmt requirements..."
|
||||
gofmt_files=$(gofmt -s -l ${@})
|
||||
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
|
||||
|
||||
Loading…
Reference in new issue