From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 finch.gentoo.org (Postfix) with ESMTPS id 39434158147 for ; Tue, 22 Jul 2025 22:31:34 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 1C92C341FA2 for ; Tue, 22 Jul 2025 22:31:17 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 6B01D110566; Tue, 22 Jul 2025 22:31:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 5E602110564 for ; Tue, 22 Jul 2025 22:31:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1C07E3415EF for ; Tue, 22 Jul 2025 22:31:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B56A232A0 for ; Tue, 22 Jul 2025 22:31:01 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1753223455.8d02d2de89b8af6ca4da9f2e8b7cc989822bbf3f.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/isolated-functions.sh X-VCS-Directories: bin/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8d02d2de89b8af6ca4da9f2e8b7cc989822bbf3f X-VCS-Branch: master Date: Tue, 22 Jul 2025 22:31:01 +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: b9f3bedd-9e7a-4b02-b818-00608bbe76bf X-Archives-Hash: c4473cc4e2855cfda65605176a2dc787 commit: 8d02d2de89b8af6ca4da9f2e8b7cc989822bbf3f Author: Kerin Millar plushkava net> AuthorDate: Sun Jul 20 06:25:07 2025 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jul 22 22:30:55 2025 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=8d02d2de isolated-functions.sh: mute an SC2034 warning regarding PORTAGE_COLOR_HILITE Presently, shellcheck warns that the 'PORTAGE_COLOR_HILITE' variable appears to be unused. Prevent it from doing so. Signed-off-by: Kerin Millar plushkava.net> Signed-off-by: Sam James gentoo.org> bin/isolated-functions.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/isolated-functions.sh b/bin/isolated-functions.sh index 08e7a326fb..bd701ad011 100644 --- a/bin/isolated-functions.sh +++ b/bin/isolated-functions.sh @@ -391,6 +391,7 @@ __set_colors() { # Now, ${ENDCOL} will move us to the end of the # column; regardless of character width ENDCOL=$'\e[A\e['$(( COLS - 8 ))'C' + # shellcheck disable=2034 if [[ ${PORTAGE_COLORMAP} ]]; then # The PORTAGE_COLORMAP environment variable is defined by the # doebuild.py unit and is intended to be evaluated as code.