mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-15 21:57:02 +02:00
common/scripts/lint-conflicts: handle emptied packages
This commit is contained in:
parent
2381637340
commit
bda9720be0
1 changed files with 4 additions and 1 deletions
|
@ -130,9 +130,12 @@ group_by_file_partial() {
|
|||
# for all packages in xlocate
|
||||
local pkgname file
|
||||
## newly built packages
|
||||
while read -r pkgver; do
|
||||
pkgname=${pkgver%-*}
|
||||
newly_built[$pkgname]=$pkgname
|
||||
done < <(xbps-query "${repositories[@]}" -i -R -s '' | cut -d' ' -f 2)
|
||||
while read -r pkgname file; do
|
||||
owners[$file]+=" $pkgname"
|
||||
newly_built[$pkgname]=$pkgname
|
||||
done < <(list_newly_built_files)
|
||||
## rest of repository
|
||||
while read -r pkgver file; do
|
||||
|
|
Loading…
Add table
Reference in a new issue