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 /pdebuild-internal | |
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 'pdebuild-internal')
-rw-r--r-- | pdebuild-internal | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pdebuild-internal b/pdebuild-internal index ce624b2..54ca58f 100644 --- a/pdebuild-internal +++ b/pdebuild-internal @@ -30,7 +30,7 @@ set -e # I am probably running as root; make sure I have pbuilder installed here. # passwd is needed as well because of useradd and groupadd calls. -apt-get install -y --force-yes pbuilder passwd +apt-get install -q -y --force-yes pbuilder passwd # I'm not going to have the same LOGNAME as outside, I'm root. export LOGNAME=root @@ -84,7 +84,7 @@ BUILDPLACE= executehooks "D" export PBCURRENTCOMMANDLINEOPERATION="pdebuild" "$PBUILDERSATISFYDEPENDSCMD" -apt-get install -y --force-yes fakeroot +apt-get install -q -y --force-yes fakeroot # create the user similar to that used outside groupadd -g "${BUILDRESULTGID}" -o pbgroup |