diff options
author | Tommy M. McGuire <mcguire@crsr.net> | 2005-06-10 01:22:06 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-12 20:48:18 -0700 |
commit | 667628d97a5baf18ffa0c701cab6d00e7d812741 (patch) | |
tree | 5a6c4122d8f385c37b77e6c3be41a2086f822d53 | |
parent | [PATCH] diff-stages: unuglify the too big main() function. (diff) | |
download | tgif-667628d97a5baf18ffa0c701cab6d00e7d812741.tar.xz |
[PATCH] cvsimport: allow remote CVS repos
Remove unneeded sanity tests. Remote repositories do, indeed, just
work.
Signed-off-by: Tommy McGuire <mcguire@crsr.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rwxr-xr-x | git-cvsimport-script | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-cvsimport-script b/git-cvsimport-script index 7a43e65592..936ed8837e 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 <cvsroot> <module>" exit 1 fi |