aboutsummaryrefslogtreecommitdiffstats
path: root/modules/subversion/templates/hook_commit.sh
blob: 0fdfc3e5bd0a68cf878b14db5f5ecdf2ac0cce4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
for script in $0.d/*; do
    if [ ! -x "$script" ]; then
        continue
    fi

    if [[ "$script" == *~ ]]; then
        continue
    fi

    $script $@ || exit 1
done