summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKerin Millar <kfm@plushkava.net>2024-06-04 00:39:42 +0100
committerKerin Millar <kfm@plushkava.net>2024-06-12 08:06:42 +0100
commit01660459fdbbf8585bd0958211a467a620c7e2c0 (patch)
tree6dc0ca90c4e68efe4a55723f9e8498ecd43a53b5
parentHave quote_args() respect POSIXLY_CORRECT for Issue 7 conformance (diff)
downloadgentoo-functions-01660459fdbbf8585bd0958211a467a620c7e2c0.tar.gz
gentoo-functions-01660459fdbbf8585bd0958211a467a620c7e2c0.tar.bz2
gentoo-functions-01660459fdbbf8585bd0958211a467a620c7e2c0.zip
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@plushkava.net>
-rw-r--r--functions.sh2
1 files changed, 1 insertions, 1 deletions
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