diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-10-04 09:57:23 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-10-04 09:57:23 +0200 |
commit | 58783edaceb490f8d76bd2b9d452bbe5cadbf95d (patch) | |
tree | 25a890f47ec81498878367857eeecac040433ceb /bin | |
parent | 92aa65747ddad6fdc47bdb1680cb51a9ed0977aa (diff) | |
download | jenkins.debian.net-58783edaceb490f8d76bd2b9d452bbe5cadbf95d.tar.xz |
reproducible: ignore zurl and cups for the time being
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 62c1ec7d..695d1cac 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -67,7 +67,7 @@ if [[ $1 =~ ^-?[0-9]+$ ]] ; then REAL_AMOUNT=0 GUESSES=$(echo "${AMOUNT}*3" | bc) PACKAGES="" - CANDIDATES=$(xzcat $TMPFILE | grep "^Package" | grep -v "^Package-List:" | cut -d " " -f2 | egrep -v "^linux$" | sort -R | head -$GUESSES | xargs echo) + CANDIDATES=$(xzcat $TMPFILE | grep "^Package" | grep -v "^Package-List:" | cut -d " " -f2 | egrep -v "^(linux|cups|zurl)$" | sort -R | head -$GUESSES | xargs echo) for PKG in $CANDIDATES ; do if [ $REAL_AMOUNT -eq $AMOUNT ] ; then continue |