diff --git a/lib/commands/command-help.bash b/lib/commands/command-help.bash index d9c5e20f6..68b2fbffc 100644 --- a/lib/commands/command-help.bash +++ b/lib/commands/command-help.bash @@ -19,7 +19,7 @@ asdf_extension_cmds() { for plugin_path in "$plugins_path"/*; do plugin="$(basename "$plugin_path")" ext_cmd_path="$plugin_path/lib/commands" - ext_cmds="$(find "$ext_cmd_path" -name "command*.bash")" + ext_cmds="$(find "$ext_cmd_path" -name "command*.bash" 2>/dev/null)" if [[ -n $ext_cmds ]]; then printf "\\nPLUGIN %s\\n" "$plugin" for ext_cmd in $ext_cmds; do