summaryrefslogtreecommitdiff
path: root/script/commit_mark.sh
diff options
context:
space:
mode:
Diffstat (limited to 'script/commit_mark.sh')
-rwxr-xr-xscript/commit_mark.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/script/commit_mark.sh b/script/commit_mark.sh
index 93a345bc7b..8495808cc6 100755
--- a/script/commit_mark.sh
+++ b/script/commit_mark.sh
@@ -7,9 +7,13 @@ if grep -q '^Autobuild.User' "$1"; then
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 <$USER@samba.org>
+Autobuild-User: $fullname <$mailaddr>
Autobuild-Date: $(date) on $(hostname)
EOF
exit 0