You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DoReports.sh 404B

1234567891011121314151617
  1. #!/bin/sh
  2. # cron doesn't seem to like doing this iself...
  3. . /etc/profile
  4. # Path to trunk
  5. MYDIR="/home/dmdirc/google"
  6. # Path to ant binary
  7. ANT="/usr/bin/ant"
  8. # Path to svn binary
  9. SVN="/usr/bin/svn"
  10. /bin/sh $MYDIR/oblong.sh "Reports" "Style Report Generation Started";
  11. cd $MYDIR
  12. $SVN update
  13. $ANT -k -buildfile $MYDIR/doreports.xml reports
  14. /bin/sh $MYDIR/oblong.sh "Reports" "Report Generation Complete"