summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJesse Keating <jkeating@redhat.com>2008-07-26 00:07:36 -0400
committerJesse Keating <jkeating@redhat.com>2008-07-26 00:07:36 -0400
commit35f35300e0dfc89502c390f91862c221f4cd5316 (patch)
treea7b5a848bf9d8c8071871c8b3a8cadb28c5580e8 /scripts
parent80f77ca3f2135fe93c536b89b924c255d81b4eb0 (diff)
downloadreleng-35f35300e0dfc89502c390f91862c221f4cd5316.tar.gz
releng-35f35300e0dfc89502c390f91862c221f4cd5316.tar.xz
releng-35f35300e0dfc89502c390f91862c221f4cd5316.zip
Don't do inheritance, only consider the packages specifically tagged.
As long as we start with some -final tag, we will catch every build along the way. There is no need to compare a build to itself inherited in a later tag, and inheritance can make the updates tags look...funny.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/check-upgrade-paths.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check-upgrade-paths.py b/scripts/check-upgrade-paths.py
index 49d7d86..8dc529d 100755
--- a/scripts/check-upgrade-paths.py
+++ b/scripts/check-upgrade-paths.py
@@ -64,7 +64,7 @@ badpathsbybuilder = {}
# Use multicall to get the latest tagged builds from each tag
kojisession.multicall = True
for tag in tags:
- kojisession.listTagged(tag, latest=True, inherit=True)
+ kojisession.listTagged(tag, latest=True)
results = kojisession.multiCall()