diff options
author | Junichi Uekawa <dancer@netfort.gr.jp> | 2009-08-15 14:08:54 +0900 |
---|---|---|
committer | Junichi Uekawa <dancer@netfort.gr.jp> | 2009-08-15 14:08:54 +0900 |
commit | aff01735117398ff354134327ded0f8773ba5080 (patch) | |
tree | c1d3d0ab54edd64b6d4e48b14610a503047babca /pbuilder-satisfydepends-aptitude | |
parent | 5047167c4e74464a454a79e94944843a0a586ef9 (diff) | |
download | pbuilder-aff01735117398ff354134327ded0f8773ba5080.tar pbuilder-aff01735117398ff354134327ded0f8773ba5080.tar.gz |
pass apt-get '-q' option to remove the progress.
It's probably not too useful when used non-interactively, and clutters output.
Diffstat (limited to 'pbuilder-satisfydepends-aptitude')
-rwxr-xr-x | pbuilder-satisfydepends-aptitude | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pbuilder-satisfydepends-aptitude b/pbuilder-satisfydepends-aptitude index dafdc4f..f2c301f 100755 --- a/pbuilder-satisfydepends-aptitude +++ b/pbuilder-satisfydepends-aptitude @@ -84,7 +84,7 @@ EOF fi $CHROOTEXEC sh -c "cat \"$BUILD_DEP_DEB_CONTROL\"" $CHROOTEXEC sh -c "dpkg-deb -b \"$BUILD_DEP_DEB_DIR/pbuilder-satisfydepends-dummy\"" - $CHROOTEXEC apt-get -y --force-yes install aptitude + $CHROOTEXEC apt-get -q -y --force-yes install aptitude $CHROOTEXEC dpkg -i "$BUILD_DEP_DEB_DIR/pbuilder-satisfydepends-dummy.deb" || true $CHROOTEXEC aptitude -y --without-recommends -o APT::Install-Recommends=false -o Aptitude::CmdLine::Ignore-Trust-Violations=true -o Aptitude::ProblemResolver::StepScore=100 install pbuilder-satisfydepends-dummy # check whether the aptitude's resolver kept the package |