buildtools/wafsamba: use top for waf 2.0
[Samba.git] / script / git-hooks / pre-commit-hook
blob3f51254c2cf2960361e041700a29eec6347ba874
1 #!/bin/sh
3 set -eu
5 gitdir=$(git rev-parse --show-toplevel)
6 if [ $? -ne 0 ] ; then
7 echo "git rev-parse --show-toplevel failed"
8 exit 1
9 fi
11 if [ ! -f ${gitdir}/script/git-hooks/pre-commit-script ] ; then
12 exit 0
15 ${gitdir}/script/git-hooks/pre-commit-script || exit $?
17 exit 0