#! /bin/sh
# This script creates a fresh repository
echo "cvsco: cleaning up ..."
cvsu --ignore --find --types '^.FCRUX' --batch "rm -rf" "$@"
test $? -eq 0 || exit 1
echo "cvsco: refetching missing files ..."
cvsu --ignore --find --types 'U' --batch "cvs update" "$@"
test $? -eq 0 || exit 1
echo "cvsco: done"
