diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-01-29 19:07:56 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-01-29 19:07:56 +0000 |
commit | c6b5db453dacb206f90f41109be252eff718d33c (patch) | |
tree | 7e2a43803a6ed6ade42871a220ecc57ebb689503 | |
parent | Remove code for svn.IO_error and bzr.IO_error categories since they don't (diff) | |
download | portage-2.1.7.17.tar.gz portage-2.1.7.17.tar.bz2 portage-2.1.7.17.zip |
Don't ignore CVS/Entries.IO_error when not in commit mode. (trunk r15272)v2.1.7.17
svn path=/main/branches/2.1.7/; revision=15273
-rwxr-xr-x | bin/repoman | 11 |
1 files changed, 5 insertions, 6 deletions
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"]) |