mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
242ee84fb9
enforce REAL_EMAIL
12 lines
231 B
Bash
Executable file
12 lines
231 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ "$REAL_EMAIL" = "" ]
|
|
then
|
|
echo "Error: you must set REAL_EMAIL in your profile"
|
|
echo "e.g.: export REAL_EMAIL='Joe Dow <joe@foo.bar>'"
|
|
echo ""
|
|
echo "Commit FAILED!"
|
|
echo "Set REAL_EMAIL and retry."
|
|
exit 1
|
|
fi
|
|
|