#!/bin/bash
# this script archives current build to weekly
# Thomas Chung <tchung@openwebmail.org>
# 2007.11.15

DATE=`date +%Y%m%d`
cd /var/www/html/openwebmail.org/openwebmail/download/current
cp openwebmail-current.tar.gz weekly/openwebmail-$DATE.tar.gz

