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 7A127138334 for ; Mon, 2 Dec 2019 21:33:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD6EFE0833; Mon, 2 Dec 2019 21:33:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 963D0E0833 for ; Mon, 2 Dec 2019 21:33:16 +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 6B5ED34D6DB for ; Mon, 2 Dec 2019 21:33:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E93AA8D6 for ; Mon, 2 Dec 2019 21:33:13 +0000 (UTC) From: "Göktürk Yüksek" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Göktürk Yüksek" Message-ID: <1575322332.f1e70d2f313e385d5284b83f93566f5ea16973d0.gokturk@gentoo> Subject: [gentoo-commits] proj/devmanual:master commit in: ebuild-writing/error-handling/ X-VCS-Repository: proj/devmanual X-VCS-Files: ebuild-writing/error-handling/text.xml X-VCS-Directories: ebuild-writing/error-handling/ X-VCS-Committer: gokturk X-VCS-Committer-Name: Göktürk Yüksek X-VCS-Revision: f1e70d2f313e385d5284b83f93566f5ea16973d0 X-VCS-Branch: master Date: Mon, 2 Dec 2019 21:33:13 +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: f9e66b10-e8d7-49ff-884f-24398a5a1764 X-Archives-Hash: d666a61f6a7d14bf8d04665ccb450c57 commit: f1e70d2f313e385d5284b83f93566f5ea16973d0 Author: Mikle Kolyada gentoo org> AuthorDate: Thu Jul 19 21:50:15 2018 +0000 Commit: Göktürk Yüksek gentoo org> CommitDate: Mon Dec 2 21:32:12 2019 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=f1e70d2f ebuild-writing/error-handling: expand subshell warning to EAPI=7 Closes: https://github.com/gentoo/devmanual/pull/90 Signed-off-by: Göktürk Yüksek gentoo.org> ebuild-writing/error-handling/text.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ebuild-writing/error-handling/text.xml b/ebuild-writing/error-handling/text.xml index 96dc962..35c7419 100644 --- a/ebuild-writing/error-handling/text.xml +++ b/ebuild-writing/error-handling/text.xml @@ -69,7 +69,7 @@ It's best to use || die too often than too little. -die will not work in a subshell. +die will not work in a subshell unless you are using EAPI=7 and onwards.