summaryrefslogtreecommitdiff
path: root/bin/get-package-updates
diff options
context:
space:
mode:
Diffstat (limited to 'bin/get-package-updates')
-rwxr-xr-xbin/get-package-updates4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/get-package-updates b/bin/get-package-updates
index cca4beb..ce02978 100755
--- a/bin/get-package-updates
+++ b/bin/get-package-updates
@@ -91,7 +91,9 @@ for repo in "${!repo_paths[@]}"; do
grep -v -- '-i686/PKGBUILD$' | \
sed 's|^\(\S\+\) \(.\)\t\([^/]\+\)/repos/\([^/]\+\)-[^/-]\+/PKGBUILD$|\2 \3 \1 \4|' | \
# ignore staging and testing
- grep -v '\(staging\|testing\)$'
+ grep -v '\(staging\|testing\)$' | \
+ # ignore lib32- packages (they should all have a pendent built for x86_64)
+ grep -v '^. lib32-'
done | \
sort -u | \
while read -r mode package git_revision repository; do