build-package.sh: skip work-in-process metadata when downloading dependency debs (-i/-I)

This commit is contained in:
Leonid Pliushch 2020-06-23 15:21:29 +03:00
parent c9178377bb
commit c63bfc22e2
1 changed files with 4 additions and 1 deletions

View File

@ -29,7 +29,10 @@ def get_Packages_hash_from_Release(Release_file, arch, component, hash="SHA256")
break
for j in range(i, len(hash_list)):
if string_to_find in hash_list[j].strip(' '):
print(hash_list[j].strip(' ').split(' ')[0])
hash_entry = list(filter(lambda s: s != '', hash_list[j].strip('').split(' ')))
if hash_entry[2].startswith(".work_"):
continue
print(hash_entry[0])
break
if __name__ == '__main__':