1 stefano_fornari 1.1 #!/bin/sh
2 #
3 # validate−cvs−log.sh logfile
4 # test that log message has some characters in it
5 if [ `cat $1 | wc -c` -lt 10 ] ; then
6 echo "log message too short; please enter a description for the changes"
7 exit 1
8 else
9 exit 0
10 fi
|