mirror of
https://github.com/leon-ai/leon.git
synced 2024-11-27 08:06:03 +03:00
12 lines
375 B
Bash
Executable File
12 lines
375 B
Bash
Executable File
#!/bin/sh
|
|
. "$(dirname "$0")/_/husky.sh"
|
|
|
|
if ! [ -x "$(command -v npm)" ]; then
|
|
echo "npm: command not found"
|
|
echo "If you use a version manager tool such as nvm and a git GUI such as GitKraken, please read: https://typicode.github.io/husky/#/?id=command-not-found" >&2
|
|
exit 1
|
|
else
|
|
npm run lint && node_modules/@babel/node/bin/babel-node.js scripts/commit-msg.js
|
|
fi
|
|
|