summaryrefslogtreecommitdiff
path: root/bin/get-package-updates
diff options
context:
space:
mode:
Diffstat (limited to 'bin/get-package-updates')
-rwxr-xr-xbin/get-package-updates5
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/get-package-updates b/bin/get-package-updates
index 9271c90..81efc2f 100755
--- a/bin/get-package-updates
+++ b/bin/get-package-updates
@@ -384,7 +384,10 @@ echo 'Check modified packages from the last update, and put them to the build li
# shellcheck disable=SC2154
git_revision="${new_repo_revisions__archlinux32}"
found_package=false
- for repository in ${repo_names}; do
+ # we need to test archlinux32 last, because otherwise
+ # find_package_repository_to_package might look in the wrong git
+ # repository of a package w/o upstream
+ for repository in ${repo_names} archlinux32; do
eval 'repo_path="${repo_paths__'"${repository}"'}"'
if [ "${repository}" = "archlinux32" ]; then
if git -C "${repo_path}" archive "${new_repo_revisions__archlinux32}" 2> /dev/null | \