From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 15C861381F3 for ; Fri, 1 May 2020 17:59:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 494F4E08D0; Fri, 1 May 2020 17:59:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 33CB4E08D0 for ; Fri, 1 May 2020 17:59:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 489F434F026 for ; Fri, 1 May 2020 17:59:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0137326 for ; Fri, 1 May 2020 17:59:25 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1588355956.a568c369788436b7a10b8de7cf8051f2c0130a23.robbat2@gentoo> Subject: [gentoo-commits] proj/gentoo-mirrorstats:master commit in: / X-VCS-Repository: proj/gentoo-mirrorstats X-VCS-Files: mirmon-wrapper.sh X-VCS-Directories: / X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: a568c369788436b7a10b8de7cf8051f2c0130a23 X-VCS-Branch: master Date: Fri, 1 May 2020 17:59:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 917e5d51-76c3-42ba-9712-a592303eaf93 X-Archives-Hash: 18388e5267ea6d09421ada25cf479003 commit: a568c369788436b7a10b8de7cf8051f2c0130a23 Author: Robin H. Johnson gentoo org> AuthorDate: Fri May 1 17:59:16 2020 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Fri May 1 17:59:16 2020 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-mirrorstats.git/commit/?id=a568c369 mirmon-wrapper.sh: missed case in args Signed-off-by: Robin H. Johnson gentoo.org> mirmon-wrapper.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/mirmon-wrapper.sh b/mirmon-wrapper.sh index 0340ec6..e641c75 100755 --- a/mirmon-wrapper.sh +++ b/mirmon-wrapper.sh @@ -122,6 +122,7 @@ INVALID= while [[ $# -gt 0 ]]; do case "$1" in + # Strs: --mode) MODE=$2 shift 2 @@ -135,6 +136,11 @@ while [[ $# -gt 0 ]]; do URL=$2 shift 2 ;; + # Bools: + --quiet) + QUIET=1 + shift + ;; --debug) DEBUG=1 shift @@ -147,8 +153,8 @@ while [[ $# -gt 0 ]]; do HELP=1 shift ;; + # End of options --) - # End of options break ;; *)