Subversion Repositories DevTools

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3613 dpurdie 1
#!/bin/sh
2
#set -x
3
 
4
# Log operations
5
 
6
LOGDIR=/home/releasem/logs
7
LOGFILE=`date +release.%Y.%m.%d.log`
8
mkdir -p $LOGDIR
9
echo `date` " make_log $@" >> $LOGDIR/$LOGFILE
10
 
11
# Return a known exit code - zero is not a good choice
12
exit 55