summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-03-20 17:30:46 +0100
committerHolger Levsen <holger@layer-acht.org>2015-03-20 17:30:46 +0100
commitffe94fb621919d7d18a970a35fd4d9ec70d44c80 (patch)
tree7884dfa7b78283e019b3a6b56f1a88dfa6162ec5 /bin
parentd25b9f3cece37e2d506996b53f129858d2a256d2 (diff)
downloadjenkins.debian.net-ffe94fb621919d7d18a970a35fd4d9ec70d44c80.tar.xz
reproducible: install debbindiff with recommends, as needed by version 10
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_setup_schroot.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/reproducible_setup_schroot.sh b/bin/reproducible_setup_schroot.sh
index f02c7c80..3195da46 100755
--- a/bin/reproducible_setup_schroot.sh
+++ b/bin/reproducible_setup_schroot.sh
@@ -52,7 +52,9 @@ bootstrap() {
sudo chroot $CHROOT_TARGET apt-get update
if [ -n "$1" ] ; then
- sudo chroot $CHROOT_TARGET apt-get install -y --no-install-recommends "$@"
+ # install debbindiff with all recommends...
+ #sudo chroot $CHROOT_TARGET apt-get install -y --no-install-recommends "$@"
+ sudo chroot $CHROOT_TARGET apt-get install -y "$@"
fi
}