From aac25568d86b95872e4620ca2412f26072d28972 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Thu, 17 Dec 2015 19:39:20 +0100 Subject: reproducible archlinux+rpms: remove useless usage of cat, build rpms in random order --- bin/reproducible_build_rpm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/reproducible_build_rpm.sh') diff --git a/bin/reproducible_build_rpm.sh b/bin/reproducible_build_rpm.sh index 64c7bbd5..e73a2452 100755 --- a/bin/reproducible_build_rpm.sh +++ b/bin/reproducible_build_rpm.sh @@ -71,7 +71,7 @@ choose_package() { fi echo "$(date -u ) - choosing package to be build." local PKG="" - for PKG in $(cat ${RPM_PKGS}_$RELEASE) ; do + for PKG in $(sort -R ${RPM_PKGS}_$RELEASE) ; do # build package if it has never build or at least $MIN_AGE days ago if [ ! -d $BASE/rpms/$RELEASE/$ARCH/$PKG ] || [ $DUMMY -nt $BASE/rpms/$RELEASE/$ARCH/$PKG ] ; then SRCPACKAGE=$PKG -- cgit v1.2.3-54-g00ecf