Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/lib/common-functions
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2025-03-30 09:27:52 +0200
committerErich Eckner <git@eckner.net>2025-03-30 09:27:52 +0200
commit4be85f7ebb49354119679c4010cbeede8cfadf9d (patch)
tree54f3f780d164d449c5f17828685d848262c69b3b /lib/common-functions
parent4ee5232fc2d08093bd54288ceda47db10d8f83fe (diff)
also ignore build-support-any for the listing used in the sanity check
Diffstat (limited to 'lib/common-functions')
-rwxr-xr-xlib/common-functions6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/common-functions b/lib/common-functions
index 4ec35f3..86cf0af 100755
--- a/lib/common-functions
+++ b/lib/common-functions
@@ -20,7 +20,11 @@ ls_master_mirror() {
"${master_mirror_rsync_directory}/${path}/" | \
grep -v '\s\.$' | \
awk '{print $5}' | \
- grep -v build-support-manual
+ grep -vxFf <(
+ printf '%s\n' \
+ build-support-any \
+ build-support-manual
+ )
}