mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 22:34:18 +01:00
11 lines
185 B
Bash
Executable file
11 lines
185 B
Bash
Executable file
#!/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
|
|
|