mirror of
https://github.com/doocs/md.git
synced 2026-08-30 17:35:08 +08:00
12 lines
225 B
Bash
12 lines
225 B
Bash
#!/bin/sh
|
|
|
|
if [ "$SKIP_SIMPLE_GIT_HOOKS" = "1" ]; then
|
|
echo "[INFO] SKIP_SIMPLE_GIT_HOOKS is set to 1, skipping hook."
|
|
exit 0
|
|
fi
|
|
|
|
if [ -f "$SIMPLE_GIT_HOOKS_RC" ]; then
|
|
. "$SIMPLE_GIT_HOOKS_RC"
|
|
fi
|
|
|
|
npx lint-staged |