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 212B1158094 for ; Wed, 20 Jul 2022 09:35:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44599E0C5F; Wed, 20 Jul 2022 09:35:21 +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 269F5E0C5F for ; Wed, 20 Jul 2022 09:35:21 +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 26F6A340D54 for ; Wed, 20 Jul 2022 09:35:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 095BC52D for ; Wed, 20 Jul 2022 09:35:17 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1658309616.16dab572c817e91990e26752a9734160062d974c.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: eclass/ X-VCS-Repository: repo/proj/guru X-VCS-Files: eclass/nim-utils.eclass X-VCS-Directories: eclass/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 16dab572c817e91990e26752a9734160062d974c X-VCS-Branch: master Date: Wed, 20 Jul 2022 09:35:17 +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: 7dbff5ed-453f-457c-a852-1965cc0d75da X-Archives-Hash: 576f9b63505acdb7dfe5432039b4c76d commit: 16dab572c817e91990e26752a9734160062d974c Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Wed Jul 20 09:33:36 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Wed Jul 20 09:33:36 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=16dab572 nim-utils.eclass: "|| die" Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> eclass/nim-utils.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/nim-utils.eclass b/eclass/nim-utils.eclass index bab1a55f4..61f25905b 100644 --- a/eclass/nim-utils.eclass +++ b/eclass/nim-utils.eclass @@ -103,7 +103,7 @@ etestament() { if [[ ${ETESTAMENT_DESELECT} ]]; then local skipfile="${T}"/testament.skipfile if [[ ! -f ${skipfile} ]]; then - printf "%s\n" "${ETESTAMENT_DESELECT[@]}" > "${skipfile}" + printf "%s\n" "${ETESTAMENT_DESELECT[@]}" > "${skipfile}" || die else debug-print "${skipfile} already exists, not overwriting" fi