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 BD7D9158089 for ; Sat, 4 Nov 2023 21:53:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 04B6F2BC016; Sat, 4 Nov 2023 21:53:46 +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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D5CB92BC016 for ; Sat, 4 Nov 2023 21:53:45 +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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D75E7335CB4 for ; Sat, 4 Nov 2023 21:53:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5766098B for ; Sat, 4 Nov 2023 21:53:43 +0000 (UTC) From: "Pascal Jäger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pascal Jäger" Message-ID: <1699134797.024a84ba54f30a6c59a5b36887ef8baab7b10f98.pascal.jaeger@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-editors/lapce/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-editors/lapce/lapce-0.3.0.ebuild X-VCS-Directories: app-editors/lapce/ X-VCS-Committer: pascal.jaeger X-VCS-Committer-Name: Pascal Jäger X-VCS-Revision: 024a84ba54f30a6c59a5b36887ef8baab7b10f98 X-VCS-Branch: dev Date: Sat, 4 Nov 2023 21:53:43 +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: 3545ad91-3c0d-4448-b499-a4ebea38f66a X-Archives-Hash: b5305038faf034b728ac028c30adb0db commit: 024a84ba54f30a6c59a5b36887ef8baab7b10f98 Author: Pascal Jäger leimstift de> AuthorDate: Sat Nov 4 21:53:17 2023 +0000 Commit: Pascal Jäger leimstift de> CommitDate: Sat Nov 4 21:53:17 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=024a84ba app-editors/lapce: added || die after command Signed-off-by: Pascal Jäger leimstift.de> app-editors/lapce/lapce-0.3.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-editors/lapce/lapce-0.3.0.ebuild b/app-editors/lapce/lapce-0.3.0.ebuild index 6d97fd8457..5b694aa0bd 100644 --- a/app-editors/lapce/lapce-0.3.0.ebuild +++ b/app-editors/lapce/lapce-0.3.0.ebuild @@ -41,7 +41,7 @@ src_unpack() { sed -i "${ECARGO_HOME}/config" -e '/source.crates-io/d' || die sed -i "${ECARGO_HOME}/config" -e '/replace-with = "gentoo"/d' || die sed -i "${ECARGO_HOME}/config" -e '/local-registry = "\/nonexistent"/d' || die - cat "${WORKDIR}/vendor/vendor-config.toml" >> "${ECARGO_HOME}/config" + cat "${WORKDIR}/vendor/vendor-config.toml" >> "${ECARGO_HOME}/config" || die } src_install() {