diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-20 17:30:46 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-20 17:30:46 +0100 |
commit | ffe94fb621919d7d18a970a35fd4d9ec70d44c80 (patch) | |
tree | 7884dfa7b78283e019b3a6b56f1a88dfa6162ec5 | |
parent | d25b9f3cece37e2d506996b53f129858d2a256d2 (diff) | |
download | jenkins.debian.net-ffe94fb621919d7d18a970a35fd4d9ec70d44c80.tar.xz |
reproducible: install debbindiff with recommends, as needed by version 10
-rwxr-xr-x | bin/reproducible_setup_schroot.sh | 4 |
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 } |