summaryrefslogtreecommitdiffstats
path: root/snap
Commit message (Expand)AuthorAgeFilesLines
* snap-packaging for gitea (#2568)Thorben2018-05-096-0/+384
ff343c9f16119ddbff06044e5d61388baa22'>template1.git/hooks/update
blob: df5bd27f106f23e0609349071906a20f7813545a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash
exitcodes=""
hookname=$(basename $0)
GIT_DIR=${GIT_DIR:-$(dirname $0)}

for hook in ${GIT_DIR}/hooks/${hookname}.d/*; do
test -x "${hook}" && test -f "${hook}" || continue
"${hook}" $1 $2 $3
exitcodes="${exitcodes} $?"
done

for i in ${exitcodes}; do
[ ${i} -eq 0 ] || exit ${i}
done