From: Zac Medico Date: Fri, 29 Jan 2010 19:07:56 +0000 (-0000) Subject: Don't ignore CVS/Entries.IO_error when not in commit mode. (trunk r15272) X-Git-Tag: v2.1.7.17 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=c6b5db453dacb206f90f41109be252eff718d33c;p=portage.git Don't ignore CVS/Entries.IO_error when not in commit mode. (trunk r15272) svn path=/main/branches/2.1.7/; revision=15273 --- diff --git a/bin/repoman b/bin/repoman index 7efd7e7ec..c84079555 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1157,12 +1157,11 @@ for x in scanlist: if l[-7:] == ".ebuild": eadded.append(os.path.basename(l[:-7])) except IOError: - if options.mode == 'commit': - if vcs == "cvs": - stats["CVS/Entries.IO_error"] += 1 - fails["CVS/Entries.IO_error"].append(checkdir+"/CVS/Entries") - else: - raise + if vcs == "cvs": + stats["CVS/Entries.IO_error"] += 1 + fails["CVS/Entries.IO_error"].append(checkdir+"/CVS/Entries") + else: + raise continue mf = Manifest(checkdir, repoman_settings["DISTDIR"])