mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
12 lines
185 B
Bash
Executable File
12 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
|
|
|