aboutsummaryrefslogtreecommitdiffstats
path: root/.husky/prepare-commit-msg
diff options
context:
space:
mode:
Diffstat (limited to '.husky/prepare-commit-msg')
-rwxr-xr-x.husky/prepare-commit-msg10
1 files changed, 10 insertions, 0 deletions
diff --git a/.husky/prepare-commit-msg b/.husky/prepare-commit-msg
new file mode 100755
index 000000000..1c2c393cd
--- /dev/null
+++ b/.husky/prepare-commit-msg
@@ -0,0 +1,10 @@
1#!/bin/sh
2
3FILE_NAME="$(dirname "$0")/_/husky.sh"
4
5# Conditionally invoke so as to avoid running npm commands if this is a clean checkout (ie before installing npm modules)
6if [ -f $FILE_NAME ]; then
7 . $FILE_NAME
8
9 exec < /dev/tty && git cz --hook || true
10fi