Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/bin/build-packages
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2020-01-03 15:17:19 +0100
committerErich Eckner <git@eckner.net>2020-01-03 15:17:19 +0100
commit4715844cc31eb774c912839c5e37895d311b42a4 (patch)
tree49d72d0041287fbfb988ca47f350c5549c3739da /bin/build-packages
parent8c51daf86f77a4c9c945b162332523448dda9d26 (diff)
bin/build-packages: do not download more than 100 packages for namcap
Diffstat (limited to 'bin/build-packages')
-rwxr-xr-xbin/build-packages4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/build-packages b/bin/build-packages
index 8e16e60..63c9301 100755
--- a/bin/build-packages
+++ b/bin/build-packages
@@ -700,14 +700,14 @@ while [ "${count}" -ne 0 ] && \
s/\$repo/'"${repository}"'/g
s/\$arch/x86_64/g
p
- ' | \
- shuf
+ '
} | \
sed '
s|$|/'"${pkg_file}"'|
s/\.[0-9]\+\(-[^-]\+\)$/\1/
s/-'"${arch}"'\+\(\.pkg\.tar\.zst\)$/-x86_64\1/
' | \
+ shuf -n 100 | \
while read -r url; do
>&2 printf 'downloading "%s" ...' "${url}"
if wget -q --timeout=15 -nd "${url}"; then