summaryrefslogtreecommitdiff
path: root/script/commit_mark.sh
blob: 8495808cc64b6eee459642afedf55111aea5a9f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/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)
mailaddr=$(git config user.email)
if test -z "$mailaddr" ; then
	mailaddr="$USER@samba.org"
fi
cat <<EOF >> "$1"

Autobuild-User: $fullname <$mailaddr>
Autobuild-Date: $(date) on $(hostname)
EOF
exit 0