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:
parent
432ba3144e
commit
95e3647bc9
1 changed files with 1 additions and 1 deletions
2
install
2
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue