Compare commits

...

2 Commits

Author SHA1 Message Date
fanyx 845cdd62c9 void-packages: pre-commit hook 2024-06-26 12:14:43 +02:00
fanyx 040ad03e33 editor: vim 2024-06-26 12:14:17 +02:00
2 changed files with 6 additions and 1 deletions

View File

@ -31,3 +31,5 @@
[credential]
helper = store
[core]
editor = vim

View File

@ -1,12 +1,15 @@
#!/bin/bash
# xlint all changed templates
# xgensum all changed templates
EX_ERR=1
FILES=$(git diff --name-only --staged | grep template)
for FILE in ${FILES}; do
stat "${FILE}" &> /dev/null || continue
echo "xlint ${FILE}:"
echo "linting ${FILE}:"
xlint $FILE || exit $EX_ERR
xgensum -i $FILE || exit $EX_ERR
echo "all clear."
done