tileserver-gl/.husky/commit-msg
Vinayak Kulkarni 50df4480ca
chore: migrate husky to v9 (#1195)
* chore: migrate husky to v9

* fix: prepare npm script lol 🤷‍♂️
2024-04-21 11:58:34 -04:00

19 lines
371 B
Plaintext
Executable File

NAME=$(git config user.name)
EMAIL=$(git config user.email)
if [ -z "$NAME" ]; then
echo "empty git config user.name"
exit 1
fi
if [ -z "$EMAIL" ]; then
echo "empty git config user.email"
exit 1
fi
git interpret-trailers --if-exists doNothing --trailer \
"Signed-off-by: $NAME <$EMAIL>" \
--in-place "$1"
npm exec --no -- commitlint --edit $1