mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
change tabs to spaces
Signed-off-by: Jessica Frazelle <jess@docker.com>
This commit is contained in:
parent
3280ce651b
commit
f3ba0a6a35
1 changed files with 19 additions and 9 deletions
|
@ -6,17 +6,27 @@ IFS=$'\n'
|
||||||
files=( $(validate_diff --diff-filter=ACMR --name-only -- '*.go' | grep -v '^vendor/' || true) )
|
files=( $(validate_diff --diff-filter=ACMR --name-only -- '*.go' | grep -v '^vendor/' || true) )
|
||||||
unset IFS
|
unset IFS
|
||||||
|
|
||||||
|
errors=()
|
||||||
for f in "${files[@]}"; do
|
for f in "${files[@]}"; do
|
||||||
# we use "git show" here to validate that what's committed is vetted
|
# we use "git show" here to validate that what's committed passes go vet
|
||||||
failedVet=$(git show "$VALIDATE_HEAD:$f" | go vet)
|
failedVet=$(go vet "$f")
|
||||||
if [ $failedVet ]; then
|
if [ "$failedVet" ]; then
|
||||||
fails=yes
|
errors+=( "$failedVet" )
|
||||||
echo $failedVet
|
fi
|
||||||
fi
|
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ $fails ]; then
|
|
||||||
echo 'Please review and resolve the above issues and commit the result.'
|
if [ ${#errors[@]} -eq 0 ]; then
|
||||||
|
echo 'Congratulations! All Go source files have been vetted.'
|
||||||
else
|
else
|
||||||
echo 'All Go source files have been vetted.'
|
{
|
||||||
|
echo "Errors from go vet:"
|
||||||
|
for err in "${errors[@]}"; do
|
||||||
|
echo " - $err"
|
||||||
|
done
|
||||||
|
echo
|
||||||
|
echo 'Please fix the above errors. You can test via "go vet" and commit the result.'
|
||||||
|
echo
|
||||||
|
} >&2
|
||||||
|
false
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Reference in a new issue