mirror of
https://github.com/Luzifer/archrepo.git
synced 2024-12-20 21:21:19 +00:00
Fix: Query should consist of all whitelisted packages
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
89bb621a4e
commit
e0dd7dc6ca
1 changed files with 1 additions and 1 deletions
|
@ -25,6 +25,7 @@ step "Collecting local package versions..."
|
||||||
# Prime the local_versions array from the package list
|
# Prime the local_versions array from the package list
|
||||||
for package in $(<aur-packages); do
|
for package in $(<aur-packages); do
|
||||||
local_versions[${package}]=0.0.0
|
local_versions[${package}]=0.0.0
|
||||||
|
aur_query+=("arg[]=${package}")
|
||||||
done
|
done
|
||||||
|
|
||||||
# Update versions in local_versions from database entries
|
# Update versions in local_versions from database entries
|
||||||
|
@ -37,7 +38,6 @@ for package in ${known_packages}; do
|
||||||
[[ -n ${local_versions[${name}]:-} ]] || continue
|
[[ -n ${local_versions[${name}]:-} ]] || continue
|
||||||
|
|
||||||
local_versions[${name}]=${version}
|
local_versions[${name}]=${version}
|
||||||
aur_query+=("arg[]=${name}")
|
|
||||||
done
|
done
|
||||||
|
|
||||||
step "Fetching AUR package versions..."
|
step "Fetching AUR package versions..."
|
||||||
|
|
Loading…
Reference in a new issue