From: Michael Prokop Date: Fri, 18 Mar 2011 14:21:45 +0000 (+0100) Subject: scripts/release_helper.sh: disable apt-listchanges and apt-listbugs. X-Git-Tag: v0.13.3~63 X-Git-Url: http://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=9dd04ba89cbda9b2481f4c7a186a34637a126a0a scripts/release_helper.sh: disable apt-listchanges and apt-listbugs. --- diff --git a/scripts/release_helper.sh b/scripts/release_helper.sh index d5c21c2..268a70a 100755 --- a/scripts/release_helper.sh +++ b/scripts/release_helper.sh @@ -110,9 +110,9 @@ if [ -n "${AUTOBUILD:-}" ] ; then ) git checkout master git branch -D ${autobuild_branch} || true - sudo apt-get update + env APT_LISTCHANGES_FRONTEND=none APT_LISTBUGS_FRONTEND=none sudo apt-get update PACKAGES=$(dpkg --list grml-live\* | awk '/^ii/ {print $2}') - sudo apt-get -y --allow-unauthenticated install $PACKAGES + env APT_LISTCHANGES_FRONTEND=none APT_LISTBUGS_FRONTEND=none sudo apt-get -y --allow-unauthenticated install $PACKAGES fi ## END OF FILE #################################################################