diff options
author | Zac Medico <zmedico@gentoo.org> | 2012-08-17 18:12:41 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2012-08-17 18:12:41 -0700 |
commit | 76fa7e4b7a28804d42b2fa7f50f9d9bfc73312b9 (patch) | |
tree | 53bd0c39fae4ffc63dab72d99eca5b461a62ab1d /misc | |
parent | emerge-delta-webrsync: check write permission (diff) | |
download | portage-76fa7e4b7a28804d42b2fa7f50f9d9bfc73312b9.tar.gz portage-76fa7e4b7a28804d42b2fa7f50f9d9bfc73312b9.tar.bz2 portage-76fa7e4b7a28804d42b2fa7f50f9d9bfc73312b9.zip |
emerge-delta-webrsync: add -q/--quiet option
Diffstat (limited to 'misc')
-rwxr-xr-x | misc/emerge-delta-webrsync | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/misc/emerge-delta-webrsync b/misc/emerge-delta-webrsync index 3b934ffe9..aa3a3d956 100755 --- a/misc/emerge-delta-webrsync +++ b/misc/emerge-delta-webrsync @@ -63,6 +63,12 @@ unset IFS MUST_SYNC='1' unset PUKE_HELP wgetops for x in $*; do + case "${x}" in + -q|--quiet) + PORTAGE_QUIET=1 + continue + ;; + esac if [[ $x == "-u" ]]; then MUST_SYNC='' elif [[ $x == "-k" ]]; then |