From b2d7c42e744cee752b2ad364c98e1d5541316732 Mon Sep 17 00:00:00 2001 From: Ulrich Müller Date: Thu, 16 Mar 2023 18:06:52 +0100 Subject: Remove useless exit message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 --- 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 -- cgit v1.2.3-65-gdbad