Merge pull request #14862 from vdemeester/validate-lint-all-files

Update validate-lint to lint all go files
Upstream-commit: 3198e76b7758ece76600562d960cb17ad735c7ca
Component: engine
This commit is contained in:
Alexander Morozov
2015-07-22 15:18:02 -07:00
+3 -1
View File
@@ -41,7 +41,9 @@ packages=(
errors=()
for p in "${packages[@]}"; do
failedLint=$(golint "$p")
# Run golint on package/*.go file explicitly to validate all go files
# and not just the ones for the current platform.
failedLint=$(golint "$p"/*.go)
if [ "$failedLint" ]; then
errors+=( "$failedLint" )
fi