#!/bin/sh -x
#************************************************************************
#   Entity Id		: $Id$
#   Package		: cvs-1.11
#   Synopsis		:
#   Purpose		: 
#
#   Date of Creation	: Mar 16, 2001
#   Version Number	: $Revision$
#   Last Updated	: $Date$
#
#   Author		: Stephen Rasku
#   Notes		:
#
#       Modify the variables at the start of the script to match your
#       environment.  This script assumes that your CVSROOT is set to
#       an existing repository.
#
#************************************************************************

CVSIMPORT=$HOME/work/cvs-1.11
CVS=/tgi/users/stephen/work/cvs/src/cvs
OWD=`pwd`
MODULE=cvs-vendor-test
VENDORTAG=vendor

cd $CVSIMPORT
$CVS import -m "Testing vendor bug" $MODULE $VENDORTAG release-tag
cd $OWD
$CVS co $MODULE
cd $MODULE
echo '$Id$' > foo
$CVS add foo
$CVS ci -m "Added foo"

# The following command is not recommended but careless CVS administrators
# sometimes do this.
cvs tag -d $VENDORTAG
$CVS admin -n$VENDORTAG:1.1.1
