vet: remove trailing whitespace (#7420)

This commit is contained in:
Easwar Swaminathan 2024-07-16 16:18:55 -07:00 committed by GitHub
parent 700ca74d01
commit b1979b6617
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ for MOD_FILE in $(find . -name 'go.mod'); do
go mod tidy -compat=1.21
git status --porcelain 2>&1 | fail_on_output || \
(git status; git --no-pager diff; exit 1)
# - Collection of static analysis checks
SC_OUT="$(mktemp)"
staticcheck -go 1.21 -checks 'all' ./... >"${SC_OUT}" || true