summaryrefslogtreecommitdiffstats
path: root/git/bin/git-hook.d
blob: 1c0ab105ce54a636c2a167d0bc0d1c2ed4b430a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

HOOKS="${0}.d"

for HOOK in "${HOOKS}"/*
do
	if [ -x "${HOOK}" ]
	then
		"${HOOK}" "${@}" || true
	fi
done