osclib/core: binary_src_debug: include nosrc as ignored arch.

This commit is contained in:
Jimmy Berry 2018-04-26 11:23:57 -05:00
parent a233d19e38
commit 9d664eab79

View File

@ -154,6 +154,7 @@ def package_binary_list(apiurl, project, repository, arch, package=None, strip_m
def binary_src_debug(binary):
return (
binary.arch == 'src' or
binary.arch == 'nosrc' or
binary.name.endswith('-debuginfo') or
binary.name.endswith('-debugsource')
)