Lee Cantey
Fri, 13 Jul 2001 14:33:46 -0700
> Or, if you have Python installed, try cvs_chroot (appended),
> courtesy of Greg Ward.
Very nice to have around. Note that for my Windows machines I
replaced find_cvs_dirs with the following to get it to work:
def find_cvs_dirs (start_dir):
def callback(arg, directory, files):
for file in files:
if os.path.isdir(file) and file == "CVS":
arg.append(os.path.join(directory, file))
dirs = []
os.path.walk(".", callback, dirs)
return dirs
Lee