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 7E1A6158041 for ; Wed, 11 Jun 2025 03:26:52 +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 68E39340E5D for ; Wed, 11 Jun 2025 03:26:52 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id E7EC01137F9; Wed, 11 Jun 2025 03:26:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 bobolink.gentoo.org (Postfix) with ESMTPS id DA4051137F5 for ; Wed, 11 Jun 2025 03:26:32 +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 8D3693409C8 for ; Wed, 11 Jun 2025 03:26:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 21AC12803 for ; Wed, 11 Jun 2025 03:26:30 +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: <1749612380.de367b22ad0c7e1a1ac0af48091f75f0757fe2ed.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/estrip X-VCS-Directories: bin/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: de367b22ad0c7e1a1ac0af48091f75f0757fe2ed X-VCS-Branch: master Date: Wed, 11 Jun 2025 03:26:30 +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: 558e2164-b9a3-4de7-a678-c4c367af74b3 X-Archives-Hash: faba10bc2253ee2c6e6fab52c83f3971 commit: de367b22ad0c7e1a1ac0af48091f75f0757fe2ed Author: Kerin Millar plushkava net> AuthorDate: Mon Jun 9 20:30:32 2025 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jun 11 03:26:20 2025 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=de367b22 estrip: specify commands for standalone redirections This is just to satisfy the SC2188 policy of shellcheck. See-also: ead85d2c48b1be1e4361622cfe42203a3326c119 Signed-off-by: Kerin Millar plushkava.net> Signed-off-by: Sam James gentoo.org> bin/estrip | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/estrip b/bin/estrip index 5d1ac2ee3d..dbd9754575 100755 --- a/bin/estrip +++ b/bin/estrip @@ -390,7 +390,7 @@ do_queue() { fi while IFS= read -r path; do - >> "${path}.estrip" || die + : >> "${path}.estrip" || die done < <( (( ${#scanelf_results[@]} )) && printf "%s\n" "${scanelf_results[@]}" find "${find_paths[@]}" -type f ! -type l -name '*.a' @@ -681,7 +681,7 @@ then # Needed after running save_elf_sources. # https://bugzilla.redhat.com/show_bug.cgi?id=444310 while read -r -d $'\0' emptydir; do - >> "${emptydir}"/.keepdir + : >> "${emptydir}"/.keepdir done < <(find "${D%/}/${prepstrip_sources_dir#/}/" -type d -empty -print0) fi