mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 03:39:55 +00:00
8 lines
144 B
Bash
Executable File
8 lines
144 B
Bash
Executable File
#!/bin/sh
|
|
|
|
[ -f "$(dirname "$0")/_/husky.sh" ] && . "$(dirname "$0")/_/husky.sh"
|
|
|
|
if command -v npm &> /dev/null; then
|
|
npm run lint:staged
|
|
fi
|