/usr/bin/irkerhook-git is in irker 2.17+dfsg-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/sh
set -e
if [ -z "$(git config --get irker.project)" ]
then
exit 0
fi
echo "sending IRC notification"
while read old new refname
do
irkerhook --refname=${refname} $(git rev-list --reverse ${old}..${new})
done
|