repo.or.cz
/
Samba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
s4:kdc: Simplify samba_kdc_update_pac_blob() to take ldb_context as parameter
[Samba.git]
/
script
/
git-hooks
/
pre-commit-hook
blob
3f51254c2cf2960361e041700a29eec6347ba874
1
#!/bin/sh
2
3
set -eu
4
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
10
11
if
[ !
-f
${gitdir}
/
script
/
git-hooks
/
pre-commit-script
] ;
then
12
exit
0
13
fi
14
15
${gitdir}
/
script
/
git-hooks
/
pre-commit-script ||
exit
$?
16
17
exit
0