Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2024-02-09 11:36:40 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2024-02-09 11:36:40 +0100
commitf101d028a7463632a701e767a7d36e45a1ed7f3a (patch)
tree3828bd3ebc1ce5401fad728b605fd0b418dfc726
parentd7ddf955b47361d6b8d4a691bf66950d419a2d00 (diff)
ignore build-support-manual in ls_master_mirror
-rwxr-xr-xlib/common-functions3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/common-functions b/lib/common-functions
index f071d4e..da5ddc1 100755
--- a/lib/common-functions
+++ b/lib/common-functions
@@ -19,7 +19,8 @@ ls_master_mirror() {
${master_mirror_rsync_command} \
"${master_mirror_rsync_directory}/${path}/" | \
grep -v '\s\.$' | \
- awk '{print $5}'
+ awk '{print $5}' | \
+ grep -v build-support-manual
}