mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-11-10 07:21:12 +08:00
9 lines
181 B
Bash
Executable File
9 lines
181 B
Bash
Executable File
#!/bin/sh
|
|
. "$(dirname "$0")/_/husky.sh"
|
|
|
|
if [[ "$OS" == "Windows_NT" ]]; then
|
|
npx.cmd --no-install commitlint -e $GIT_PARAMS
|
|
else
|
|
npx --no-install commitlint -e $GIT_PARAMS
|
|
fi
|