6 lines
153 B
Plaintext
6 lines
153 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
[[ "$(uname -a)" = *"MINGW64"* ]] && exit 0
|
||
|
|
[ -n "$CI" ] && exit 0
|
||
|
|
. "$(dirname "$0")/_/husky.sh"
|
||
|
|
|
||
|
|
exec < /dev/tty && npx git-cz --hook || true
|