mirror of
https://git.sr.ht/~danbarber/dotfiles
synced 2025-03-04 08:59:18 +00:00
8 lines
119 B
Bash
8 lines
119 B
Bash
#!/bin/sh
|
|
|
|
local_hook="$HOME"/.git_template.local/hooks/pre-commit
|
|
|
|
if [ -f "$local_hook" ]; then
|
|
. "$local_hook"
|
|
fi
|