blob: 3fc3e05c6bd61fabe77acb48cf18081dc4d82832 [file] [log] [blame]
Stefan Tauner76347082016-11-27 17:45:49 +01001#!/bin/sh
2
3if [ -x $0.local ]; then
4 $0.local "$@" || exit $?
5fi
6
7hook=$(git rev-parse --show-toplevel)"/util/git-hooks/"$(basename $0)
8if [ -x $hook ]; then
9 $hook "$@" || exit $?
10fi