Index: bin/repoman =================================================================== --- bin/repoman (revision 11895) +++ bin/repoman (revision 11896) @@ -1878,6 +1878,11 @@ print green("------------------------------------------------------------------------------") print + # Having a leading ./ prefix on file paths can trigger a bug in + # the cvs server when committing files to multiple directories, + # so strip the prefix. + myfiles = [f.lstrip("./") for f in myfiles] + retval = None if options.pretend: if vcs == "cvs":