commit: 774be3a959c128a8cac1d641edb2e208421cc796
Author: Kerin Millar <kfm <AT> plushkava <DOT> net>
AuthorDate: Sun May 19 14:51:16 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 19 14:51:16 2024 +0000
URL:
https://gitweb.gentoo.org/proj/gentoo-functions.git/commit/?id=774be3a9
Have edo() clarify that something is being executed
Because that is what happens.
Signed-off-by: Kerin Millar <kfm <AT> plushkava.net>
functions.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/functions.sh b/functions.sh
index 890fa7a..0f0aa44 100644
--- a/functions.sh
+++ b/functions.sh
@@ -94,8 +94,8 @@ ebegin()
#
edo() {
genfun_cmd=$(_print_args "$@")
- einfo "${genfun_cmd}"
- "$@" || die "Failed to run command: ${genfun_cmd}"
+ einfo "Executing: ${genfun_cmd}"
+ "$@" || die "Failed to execute command: ${genfun_cmd}"
}
#