From 95e3647bc92bc8df1a49dd9f4e29725b37a1a20b Mon Sep 17 00:00:00 2001 From: Josh Sherman Date: Sun, 27 Feb 2022 13:45:49 -0600 Subject: [PATCH] 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. --- install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install b/install index 01060f6..7775c82 100755 --- a/install +++ b/install @@ -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