From a312e5a9b9638b2bcbb0d1a51d760e0e042c5188 Mon Sep 17 00:00:00 2001 From: souhaiebtar Date: Sat, 22 Jan 2022 12:33:33 +0000 Subject: [PATCH] fix wrong function name in `helpers.bash` when i tried to install, i got a message `_bash-it-pluralize-component` command not found; after checking `utilities.bash` the correct function name was `_bash-it-component-pluralize` --- lib/helpers.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/helpers.bash b/lib/helpers.bash index 01211079..eaaa63cd 100755 --- a/lib/helpers.bash +++ b/lib/helpers.bash @@ -814,7 +814,7 @@ _disable-thing () _bash-it-clean-component-cache "${file_type}" if [ "$file_entity" = "all" ]; then - printf '%s\n' "$file_entity $(_bash-it-pluralize-component "$file_type") disabled." + printf '%s\n' "$file_entity $(_bash-it-component-pluralize "$file_type") disabled." else printf '%s\n' "$file_entity disabled." fi