blob: e22ae9ce9402fee6b9e944c7dd531edaa8bba0ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
if [ `tail -c1 $BK_FILE` ]
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
|