mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
only run gofumpt on .go files in pre-commit hook
This commit is contained in:
parent
4c079b9ede
commit
a6c767183c
1 changed files with 2 additions and 2 deletions
|
@ -13,8 +13,8 @@ for f in $(git diff --cached --name-only); do
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
# Check that all files are properly gofumpt-ed.
|
# Check that all Go files are properly gofumpt-ed.
|
||||||
output=$(gofumpt -d $(git diff --cached --name-only))
|
output=$(gofumpt -d $(git diff --cached --name-only -- '*.go'))
|
||||||
if [ -n "$output" ]; then
|
if [ -n "$output" ]; then
|
||||||
echo "Found files that are not properly gofumpt-ed."
|
echo "Found files that are not properly gofumpt-ed."
|
||||||
echo "$output"
|
echo "$output"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue