#!/bin/sh
#
# Make the d-i floppies available in snapshot/ available for 
# the CD builder to find. [pere 2003-04-11]

date=`date +%Y%m%dT%H%M -r snapshot/cdrom/boot.img`

newdir=build-$date

echo "Updating current with $date version"

cp -r snapshot $newdir
rm current
ln -s $newdir current

