We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
If a CVS repository contains a hidden (.) file i.E. Eclipse .project and .classpath file it is ignored in the cp command copying a local cvs path.
cp -rf $CVSROOT/$MODULE/* $MODULE/
changing it to
cp -rf $CVSROOT/$MODULE/. $MODULE/
solves this issue.