2021-12-22 12:07:29 +08:00
|
|
|
#!/bin/sh
|
2022-06-23 14:37:16 +08:00
|
|
|
[[ "$(uname -a)" = *"MINGW64"* ]] && exit 0
|
|
|
|
[ -n "$CI" ] && exit 0
|
2021-12-22 12:07:29 +08:00
|
|
|
. "$(dirname "$0")/_/husky.sh"
|
|
|
|
|
2022-06-23 14:37:16 +08:00
|
|
|
exec < /dev/tty && npx git-cz --hook || true
|