+
+if [ "$KIND" = "daily" ]; then
+ ##delete old files and then copy new ones, add a symlink
+ find ${FTPDIR}/files -type f -name wx\* -mtime +6 | xargs rm -rf
+ cp $DIST_DIR/wx* ${FTPDIR}/files
+
+ rm -f ${FTPDIR}/wx* ${FTPDIR}/MD5SUM
+ for f in `find ${FTPDIR}/files -type f -name wx\* -mmin -601` ; do
+ ln -s $f `echo $f | sed -e "s/-${CURDATE}//" | sed -e "s|/files||" `
+ done
+else
+ ## not a daily build
+ ##get install.txt files etc
+ ##.../docs/plat/install.txt goes to install-plat-2.7.0.txt
+ ## wince has a file down one dir
+ cp ${DOCDIR}/changes.txt $DIST_DIR/changes-${BUILD_VERSION}.txt
+
+ for f in `find ${DOCDIR} -name install.txt` ; do
+ cp $f $DIST_DIR/install-`echo $f | sed -e "s|${DOCDIR}||g" | sed -e "s|/install.txt||g"`-${BUILD_VERSION}.txt
+ done
+
+ for g in `find ${DOCDIR} -name readme.txt` ; do
+ cp $g $DIST_DIR/readme-`echo $g | sed -e "s|${DOCDIR}||g" | sed -e "s|msw/wince|wince|g" | sed -e "s|/readme.txt||g"`-${BUILD_VERSION}.txt
+ done
+ # Rename double readme
+ mv $DIST_DIR/readme-readme.txt-${BUILD_VERSION}.txt $DIST_DIR/readme-${BUILD_VERSION}.txt
+ ## copy files ...
+ mkdir ${FTPDIR}/
+ cp $DIST_DIR/* ${FTPDIR}/
+
+fi
+
+md5sum ${FTPDIR}/wx* > ${FTPDIR}/MD5SUM
+
+## make sure updated at is really last
+sleep 10
+echo svn checkout done at `date -u` > ${FTPDIR}/updated_at.txt
+
+echo "Delivery complete. Flying."