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 7DB4815A7D9 for ; Mon, 20 Mar 2023 17:11:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 93906E0864; Mon, 20 Mar 2023 17:11:27 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7989CE0864 for ; Mon, 20 Mar 2023 17:11:27 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5F4E434128A for ; Mon, 20 Mar 2023 17:11:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EC77E8D4 for ; Mon, 20 Mar 2023 17:11:23 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1678986412.b2d7c42e744cee752b2ad364c98e1d5541316732.ulm@gentoo> Subject: [gentoo-commits] proj/eselect:master commit in: bin/, / X-VCS-Repository: proj/eselect X-VCS-Files: ChangeLog bin/eselect.in X-VCS-Directories: / bin/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: b2d7c42e744cee752b2ad364c98e1d5541316732 X-VCS-Branch: master Date: Mon, 20 Mar 2023 17:11:23 +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: ee5f081a-9bff-454c-9fa4-58f1e98b46b1 X-Archives-Hash: 3d2af314849e4ae0fae24c58df465a0a commit: b2d7c42e744cee752b2ad364c98e1d5541316732 Author: Ulrich Müller gentoo org> AuthorDate: Thu Mar 16 17:06:52 2023 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu Mar 16 17:06:52 2023 +0000 URL: https://gitweb.gentoo.org/proj/eselect.git/commit/?id=b2d7c42e Remove useless exit message * bin/eselect.in (trap): Don't output a message, because die() is verbose enough. Thanks to Florian Schmaus for the suggestion. Signed-off-by: Ulrich Müller gentoo.org> ChangeLog | 5 +++++ bin/eselect.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 7bb4ea4..3057a22 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2023-03-16 Ulrich Müller + + * bin/eselect.in (trap): Don't output a message, because die() + is verbose enough. Thanks to Florian Schmaus for the suggestion. + 2023-03-14 Florian Schmaus * modules/kernel.eselect (do_update, describe_update) diff --git a/bin/eselect.in b/bin/eselect.in index 888977c..7a74098 100755 --- a/bin/eselect.in +++ b/bin/eselect.in @@ -73,7 +73,7 @@ inherit manip output path-manipulation tests # Sneaky trick to make die in subshells work. If you don't get # it, don't ask... -trap 'echo "exiting" >&2; exit 250' 15 +trap 'exit 250' 15 # es_do_usage # Display eselect usage