summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_build.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2014-09-28 01:48:40 +0200
committerHolger Levsen <holger@layer-acht.org>2014-09-28 01:48:40 +0200
commita2b13f830950c6294b289e32a8ba445ac7280a82 (patch)
tree647178a0592fb54dc9fc18f3930160897e6fedef /bin/reproducible_build.sh
parent3f012b9b79a90396c57848fc9b8147adf41a1e4f (diff)
downloadjenkins.debian.net-a2b13f830950c6294b289e32a8ba445ac7280a82.tar.xz
dont try to build the kernel
Diffstat (limited to 'bin/reproducible_build.sh')
-rwxr-xr-xbin/reproducible_build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index 9638eca2..e02036de 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -36,7 +36,7 @@ if [[ $1 =~ ^-?[0-9]+$ ]] ; then
TMPFILE=$(mktemp)
curl http://ftp.de.debian.org/debian/dists/sid/main/source/Sources.xz > $TMPFILE
AMOUNT=$1
- PACKAGES=$(xzcat $TMPFILE | grep "^Package" | cut -d " " -f2 | sort -R | head -$AMOUNT | xargs echo)
+ PACKAGES=$(xzcat $TMPFILE | grep "^Package" | cut -d " " -f2 | egrep -v "linux$"| sort -R | head -$AMOUNT | xargs echo)
rm $TMPFILE
else
PACKAGES="$@"