blob: 617400ae5d9802887c13e7a96f1124a74661a999 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# shellcheck source=./_/husky.sh
. "$(dirname "$0")/_/husky.sh"
if ! git config --get tf-a.disableCommitizen > /dev/null; then
"$(dirname "$0")/prepare-commit-msg.cz" "$@"
fi
|