Added in forgotten dependency requirement for brew-explorer

This commit is contained in:
2025-12-03 09:47:34 -07:00
parent 48372cd663
commit 9ceeef156a
2 changed files with 16 additions and 0 deletions
+14
View File
@@ -23486,6 +23486,20 @@ dtools_tui_misc_brew_explorer_parse_requirements() {
esac
done
missing_deps=
if ! command -v brew-explorer >/dev/null 2>&1; then
printf "missing dependency: brew-explorer\n" >&2
printf "%s\n\n" "See 'https://github.com/cosmincatalin/brew-explorer'" >&2
missing_deps=1
else
deps['brew-explorer']="$(command -v brew-explorer | head -n1)"
fi
if [[ -n $missing_deps ]]; then
exit 1
fi
action="tui misc brew-explorer"
while [[ $# -gt 0 ]]; do
+2
View File
@@ -108,3 +108,5 @@ commands:
- name: brew-explorer
help: A beautiful terminal UI for exploring and managing your Homebrew packages with ease
dependencies:
brew-explorer: See 'https://github.com/cosmincatalin/brew-explorer'