#!/bin/sh
#
# /etc/ports/drivers/cvsup: cvsup(1) driver script for ports(8)
#

if [ "$#" != "1" ]; then
	echo "usage: $0 <file>"
	exit 1
fi

cvsup -g -L 1 -r 0 -c .cvsup $1

# End of file
