2004-04-02 22:12:39 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
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
|
|
|
|
|