try to fix fmt msg (#133)

* try to fix fmt msg

* fix CI
This commit is contained in:
Pat Whittingslow
2026-06-22 18:16:29 -03:00
committed by GitHub
parent 860d6d00bb
commit 28addf329a
+2 -2
View File
@@ -20,9 +20,9 @@ jobs:
- name: gofmt
run: |
unformatted=$(gofmt -l .)
unformatted=$(gofmt -l -d . 2>&1) || true
if [ -n "$unformatted" ]; then
echo "::error::Files not formatted with gofmt:"
echo "::error::File(s) not formatted with gofmt:"
echo "$unformatted"
exit 1
fi