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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DB0A2158094 for ; Sun, 24 Jul 2022 16:49:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 33A30E1013; Sun, 24 Jul 2022 16:49:29 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1AAE6E1013 for ; Sun, 24 Jul 2022 16:49:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4E98134112D for ; Sun, 24 Jul 2022 16:49:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3AAB525 for ; Sun, 24 Jul 2022 16:49:26 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1658681359.2274610a3adacc42b560ab36fae5498389c6790e.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-firewall/ufw/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-firewall/ufw/ufw-0.36-r1.ebuild net-firewall/ufw/ufw-0.36.1.ebuild X-VCS-Directories: net-firewall/ufw/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 2274610a3adacc42b560ab36fae5498389c6790e X-VCS-Branch: master Date: Sun, 24 Jul 2022 16:49:26 +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: 3588fa2f-6bc5-4d5c-bd45-b353970c1dfa X-Archives-Hash: e3cb4fe486de364b59173dbcd204ff55 commit: 2274610a3adacc42b560ab36fae5498389c6790e Author: Dustin Smith gmail com> AuthorDate: Sun Jul 24 01:52:36 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Sun Jul 24 16:49:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2274610a net-firewall/ufw: fix word split issue Shellcheck found another SC2066 bug -- this is just a quick commit to fix it and make the for loop work as intended. Bug: https://bugs.gentoo.org/839216 Signed-off-by: Dustin Smith gmail.com> Closes: https://github.com/gentoo/gentoo/pull/26560 Signed-off-by: Florian Schmaus gentoo.org> net-firewall/ufw/ufw-0.36-r1.ebuild | 2 +- net-firewall/ufw/ufw-0.36.1.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net-firewall/ufw/ufw-0.36-r1.ebuild b/net-firewall/ufw/ufw-0.36-r1.ebuild index 052ffc4ee44e..5458db7c5f99 100644 --- a/net-firewall/ufw/ufw-0.36-r1.ebuild +++ b/net-firewall/ufw/ufw-0.36-r1.ebuild @@ -198,7 +198,7 @@ pkg_postinst() { print_check_req_warn=true else local rv - for rv in "${REPLACING_VERSIONS}"; do + for rv in ${REPLACING_VERSIONS}; do local major=${rv%%.*} local minor=${rv#${major}.} if [[ "${major}" -eq 0 && "${minor}" -lt 34 ]]; then diff --git a/net-firewall/ufw/ufw-0.36.1.ebuild b/net-firewall/ufw/ufw-0.36.1.ebuild index a4d9ce8191ff..d818538b68da 100644 --- a/net-firewall/ufw/ufw-0.36.1.ebuild +++ b/net-firewall/ufw/ufw-0.36.1.ebuild @@ -196,7 +196,7 @@ pkg_postinst() { print_check_req_warn=true else local rv - for rv in "${REPLACING_VERSIONS}"; do + for rv in ${REPLACING_VERSIONS}; do local major=${rv%%.*} local minor=${rv#${major}.} if [[ "${major}" -eq 0 && "${minor}" -lt 34 ]]; then