Add is-eom option to list-deliverables command
To be able to list all deliverables of a series that are tagged with End of Maintenance, <series>-eom tag. Change-Id: Ic1b23b45757e6ef1c250569c9e7337f8e7de39da
This commit is contained in:
parent
3f84b2893d
commit
88f298c6bc
@ -146,6 +146,11 @@ def main():
|
||||
action='store_true',
|
||||
help='limit the list to deliverables EOL in the cycle',
|
||||
)
|
||||
grp.add_argument(
|
||||
'--is-eom',
|
||||
action='store_true',
|
||||
help='limit the list to deliverables EOM in the cycle',
|
||||
)
|
||||
grp.add_argument(
|
||||
'--missing-final',
|
||||
action='store_true',
|
||||
@ -239,6 +244,8 @@ def main():
|
||||
continue
|
||||
if args.is_eol and 'eol' not in deliv.latest_release:
|
||||
continue
|
||||
if args.is_eom and 'eom' not in deliv.latest_release:
|
||||
continue
|
||||
if version_ending and deliv.is_released:
|
||||
found = False
|
||||
for release in deliv.releases:
|
||||
|
Loading…
x
Reference in New Issue
Block a user