too many files for shell during Make, convert .go and .sh to EOL=lf
This commit is contained in:
committed by
Matthew Patton
parent
83162717ed
commit
049e1bbf73
+4
-10
@@ -1,14 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# 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."
|
||||
for f in $@; do
|
||||
[ -n "`dos2unix 2>/dev/null < $f | gofmt -s -d`" ] && echo $f
|
||||
done
|
||||
|
||||
# always return success or else 'make' will abort
|
||||
exit 0
|
||||
|
||||
Reference in New Issue
Block a user