From: Tommy M. McGuire Date: Fri, 10 Jun 2005 06:22:06 +0000 (-0500) Subject: [PATCH] cvsimport: allow remote CVS repos X-Git-Tag: v0.99~278 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=667628d97a5baf18ffa0c701cab6d00e7d812741;p=git.git [PATCH] cvsimport: allow remote CVS repos Remove unneeded sanity tests. Remote repositories do, indeed, just work. Signed-off-by: Tommy McGuire Signed-off-by: Linus Torvalds --- diff --git a/git-cvsimport-script b/git-cvsimport-script index 7a43e6559..936ed8837 100755 --- a/git-cvsimport-script +++ b/git-cvsimport-script @@ -7,7 +7,7 @@ fi export CVSROOT="$1" export MODULE="$2" -if [ ! "$CVSROOT" ] || [ ! "$MODULE" ] || [ ! -d $CVSROOT ] || [ ! -d $CVSROOT/CVSROOT ] || [ ! -d $CVSROOT/$MODULE ] ; then +if [ ! "$CVSROOT" ] || [ ! "$MODULE" ] ; then echo "Usage: git cvsimport " exit 1 fi