diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-12-18 12:29:21 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-12-18 12:29:21 +0100 |
commit | c669671bcfccae548e090e4f0dbf2ba3cdfb40e0 (patch) | |
tree | 6fcd2885177b9374fc268fe62412cfb7faa26da4 /bin | |
parent | 714a5bad74585f1a3e5d46b25ddcac0fedf0a975 (diff) | |
download | jenkins.debian.net-c669671bcfccae548e090e4f0dbf2ba3cdfb40e0.tar.xz |
reproducible archlinux: process repositories in random order
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build_archlinux_pkg.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_build_archlinux_pkg.sh b/bin/reproducible_build_archlinux_pkg.sh index 9bd92818..9ccf43bf 100755 --- a/bin/reproducible_build_archlinux_pkg.sh +++ b/bin/reproducible_build_archlinux_pkg.sh @@ -72,7 +72,7 @@ choose_package() { update_archlinux_repositories local REPO local PKG - for REPO in $ARCHLINUX_REPOS ; do + for REPO in $(echo $ARCHLINUX_REPOS | sed -s "s# #\n#g" | sort -R | xargs echo ); do case $REPO in core) MIN_AGE=7 ;; |