Drop fzf from command check

Only checking for commands that are USED by the installer and not the
ones utilized within the dotfiles themselves. Since fzf has a sourced
file in the zshrc, it'll bark if that's missing already.
This commit is contained in:
Josh Sherman 2022-02-27 13:45:49 -06:00
parent 432ba3144e
commit 95e3647bc9
No known key found for this signature in database
GPG key ID: 55B058A80530EF22

View file

@ -4,7 +4,7 @@ if [ -z "$HOME" ]; then
echo "Seems you're \$HOMEless :("; exit 1;
fi
COMMANDS="curl fzf git stow"
COMMANDS="curl git stow"
for COMMAND in $COMMANDS; do
if ! command -v "$COMMAND" &> /dev/null; then