Forum .LRN Q&A: Re: new install, new error:

Collapse
Posted by Al Guyer on
I would just cvs co the entire branch, create a new repository, and then use cvs add to the new repository:

#!/bin/sh
WRKDIR=$1
echo WrkingDir:$WRKDIR

if [ "$WRKDIR" = "" ]; then
echo Usage: cvsAddFilz.sh dir;
echo Apparently you did not list a directory...?
exit 0;
fi

#read myPause

for i in `find $WRKDIR/.`; do

case "$i" in
*cvs*|*CVS*|./.);;
*) cvs add $i ;;

esac
done

cvs commit

###
But I think the REAL problem is the convoluted install pages and broken links on opanacs.org. Most of the cvs paths in the documentation do not work.

It don't believe that the code is the issue...
Obviously, I have something either configured wrong, or a wrong version of something, or, or... something, but at this point who knows...?

Anyway, good luck with your project, it looks like it has great potential. I may check back in a few years (months?) to see if anything has changed.

-al