You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is when converting a local CVS repo (not using cvsclone). An alternative would be to add shopt -s dotglob to the shell script, making the '*' match hidden files also.
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.
The text was updated successfully, but these errors were encountered: