Commit e626d381 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #47331 from wasylkowski/fix-gofmt

Automatic merge from submit-queue Fixed the issue with formatting issues not being reported when verification fails **What this PR does / why we need it**: **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # **Special notes for your reviewer**: **Release note**: ```release-note NONE ```
parents 5e8f44f1 9920fea5
...@@ -48,7 +48,11 @@ find_files() { ...@@ -48,7 +48,11 @@ find_files() {
\) -name '*.go' \) -name '*.go'
} }
diff=$(find_files | xargs ${gofmt} -d -s 2>&1) # gofmt exits with non-zero exit code if it finds a problem unrelated to
# formatting (e.g., a file does not parse correctly). Without "|| true" this
# would have led to no useful error message from gofmt, because the script would
# have failed before getting to the "echo" in the block below.
diff=$(find_files | xargs ${gofmt} -d -s 2>&1) || true
if [[ -n "${diff}" ]]; then if [[ -n "${diff}" ]]; then
echo "${diff}" echo "${diff}"
exit 1 exit 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment