blob: 93a345bc7b90b099b499173651ee7c889f91a24a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
# add a autobuild message to the HEAD commit
if grep -q '^Autobuild.User' "$1"; then
echo "Already marked as tested"
exit 0
fi
fullname=$(getent passwd $USER | cut -d: -f5| cut -d',' -f1)
cat <<EOF >> "$1"
Autobuild-User: $fullname <$USER@samba.org>
Autobuild-Date: $(date) on $(hostname)
EOF
exit 0
|