diff options
Diffstat (limited to 'bin')
-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 } |