rsyncpath
))
+ # If an authormap exists for this repository, copy it over now. The
+ # rsync process will remove it again, so we need to redo this after
+ # each time we rsync.
+ if os.path.isfile("%s/authormap/%s" % (
+ self.conf.get("paths", "githome"), self.name)):
+ shutil.copyfile(
+ "%s/authormap/%s" % (
+ self.conf.get("paths", "githome"), self.name),
+ "%s/CVSROOT/authormap" % rsyncpath)
+
+
# Now perform Git Import Magic (TM)
savedir = os.getcwd()
os.chdir("%s/sw/fromcvs" % self.conf.get("paths", "githome"))