mariadb/BitKeeper/triggers/pre-delta

23 lines
490 B
Text
Raw Normal View History

2004-04-02 22:12:39 +02:00
#!/bin/sh
if [ "$BK_USER" = "Administrator" -o "$BK_USER" = "mysqldev" ]
then
echo "Error: you cannot checkin as 'Administrator' or 'mysqldev' user."
echo "as a workaround set BK_USER to your nickname"
echo "e.g.: export BK_USER='bar'"
echo ""
echo "Checkin FAILED!"
echo "Set BK_USER and retry."
exit 1
fi
2004-04-02 22:31:31 +02:00
if [ `tail -c1 $BK_FILE` ]
2004-04-02 22:12:39 +02:00
then
echo "File $BK_FILE does not end with a new-line character!"
echo ""
echo "Checkin FAILED!"
echo "Fix the problem and retry."
exit 1
fi