mirror of
https://github.com/MagicMirrorOrg/MagicMirror.git
synced 2026-01-09 14:17:58 -05: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
|