From c96f7c8b0723ea9c92ea45391a71feeecad70398 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sun, 31 Jul 2022 20:53:59 -0500 Subject: [PATCH] fix: only check for fzf git --- install.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.bash b/install.bash index 68f68a0..7931f18 100755 --- a/install.bash +++ b/install.bash @@ -77,7 +77,7 @@ log "${@}" install-fzf() { local install_path="${1}/fzf" - if ! [[ -e "${install_path}" ]] || ! [[ -e "${HOME}/.config/fzf/fzf.zsh" ]]; then + if ! [[ -e "${install_path}" ]]; then git clone --depth 1 https://github.com/junegunn/fzf.git "${install_path}" fi if ! [[ -e "${HOME}/.config/fzf/fzf.zsh" ]]; then