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 1CC911580B9 for ; Fri, 27 Aug 2021 18:39:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53E45E088B; Fri, 27 Aug 2021 18:39:02 +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 27598E088B for ; Fri, 27 Aug 2021 18:39:02 +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 1A052342BD1 for ; Fri, 27 Aug 2021 18:39:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B1BC335 for ; Fri, 27 Aug 2021 18:38:59 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1630089526.b9d3696c4f4da70bd4ef3c570181abcdf0ae90b3.mgorny@gentoo> Subject: [gentoo-commits] proj/qa-scripts:master commit in: / X-VCS-Repository: proj/qa-scripts X-VCS-Files: gpy-impl-list X-VCS-Directories: / X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b9d3696c4f4da70bd4ef3c570181abcdf0ae90b3 X-VCS-Branch: master Date: Fri, 27 Aug 2021 18:38:59 +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: ad9c9a9b-955a-4cfc-bd95-97551b607a54 X-Archives-Hash: 30559fe294465f7043be82b8ad7b5e4b commit: b9d3696c4f4da70bd4ef3c570181abcdf0ae90b3 Author: Michał Górny gentoo org> AuthorDate: Fri Aug 27 18:38:46 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Aug 27 18:38:46 2021 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=b9d3696c gpy-impl-list: Include proper error handling Signed-off-by: Michał Górny gentoo.org> gpy-impl-list | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpy-impl-list b/gpy-impl-list index efb38f5..be70554 100755 --- a/gpy-impl-list +++ b/gpy-impl-list @@ -10,7 +10,7 @@ fi IRC='ircs://irc.libera.chat/#gentoo-python' irk "${IRC}" - <<<$'\0' -gpy-list-pkg-impls > "${OUTDIR}"/python-pkg-impls.txt.new +gpy-list-pkg-impls > "${OUTDIR}"/python-pkg-impls.txt.new || exit 1 while read -r x; do irk "${IRC}" "${x}" done < <(git diff --no-index -s --word-diff -U0 "${OUTDIR}"/python-pkg-impls.txt{,.new} | tail -n +5 | grep -v '^@@')