1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-24 22:06:14 +01:00

Revert "Skip fetching metadata and logs in the getbinaries command"

This reverts commit 08a70952c0.
This commit is contained in:
Daniel Mach 2022-03-21 17:10:07 +01:00
parent fe2931ea22
commit a342eacf2e

View File

@ -7546,12 +7546,6 @@ Please submit there instead, or use --nodevelproject to force direct submission.
for i in binaries:
if binary != None and binary != i.name:
continue
# skip metadata (unless explicitly specified as the `FILE` (== `binary`) argument)
if not binary and i.name.startswith("_"):
continue
# skip logs (unless explicitly specified as the `FILE` (== `binary`) argument)
if not binary and i.name.endswith(".log"):
continue
# skip source rpms
if not opts.sources and (i.name.endswith('src.rpm') or i.name.endswith('sdeb')):
continue