summaryrefslogtreecommitdiffstats
path: root/bin/repoman
diff options
context:
space:
mode:
authorAlec Warner <antarus@gentoo.org>2006-04-03 15:08:07 +0000
committerAlec Warner <antarus@gentoo.org>2006-04-03 15:08:07 +0000
commit7f8fee1da83095cbd00402dc06d7d6bc0e12219f (patch)
tree1431a602f47f3ac2a8024e197217a5e4df2453cf /bin/repoman
parent27adee85a5328447c352663dbef495034f039863 (diff)
downloadportage-7f8fee1da83095cbd00402dc06d7d6bc0e12219f.tar.gz
portage-7f8fee1da83095cbd00402dc06d7d6bc0e12219f.tar.bz2
portage-7f8fee1da83095cbd00402dc06d7d6bc0e12219f.zip
It was pointed out that we have a Test-Manifest perl package, which would get sadly excluded using the old string match, so we fix it to match less ;)
svn path=/main/trunk/; revision=3068
Diffstat (limited to 'bin/repoman')
-rwxr-xr-xbin/repoman2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/repoman b/bin/repoman
index 8a40e60e0..7068ccdd9 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -1511,7 +1511,7 @@ else:
if isCvs:
mycvstree=cvstree.getentries("./",recursive=1)
mychanged=cvstree.findchanged(mycvstree,recursive=1,basedir="./")
- for manifest in [file for file in mychanged if 'Manifest' in file]:
+ for manifest in [file for file in mychanged if '/Manifest' in file]:
mychanged.remove(manifest)
mynew=cvstree.findnew(mycvstree,recursive=1,basedir="./")
myremoved=cvstree.findremoved(mycvstree,recursive=1,basedir="./")