commit: 01660459fdbbf8585bd0958211a467a620c7e2c0
Author: Kerin Millar <kfm <AT> plushkava <DOT> net>
AuthorDate: Mon Jun 3 23:39:42 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 12 07:06:42 2024 +0000
URL:
https://gitweb.gentoo.org/proj/gentoo-functions.git/commit/?id=01660459
Don't use ewarn to display a diagnostic in eqatag()
I'd rather leave the use of ewarn() to the consumers of
gentoo-functions.
Signed-off-by: Kerin Millar <kfm <AT> plushkava.net>
functions.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/functions.sh b/functions.sh
index 79cd06a..6b4c3fa 100644
--- a/functions.sh
+++ b/functions.sh
@@ -200,7 +200,7 @@ eqatag()
if command -v jq >/dev/null; then
genfun_has_jq=1
else
- ewarn "The eqatag() function requires that jq
be installed"
+ warn "eqatag: this function requires that jq be
installed"
genfun_has_jq=0
return 1
fi