From a0f05de29dec20ba135d31e15583590793735887 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sat, 1 Jun 2024 17:24:46 +0900 Subject: [PATCH] updated install script to install binary only --- install-scripts/zsh.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-scripts/zsh.sh b/install-scripts/zsh.sh index 21f2668..4a743f8 100755 --- a/install-scripts/zsh.sh +++ b/install-scripts/zsh.sh @@ -41,7 +41,7 @@ printf "\n" printf "${NOTE} Installing fzf from source...${RESET}\n" if git clone --depth 1 https://github.com/junegunn/fzf.git; then cd fzf || exit 1 - if ./install 2>&1 | tee -a "$MLOG" ; then + if ./install --bin 2>&1 | tee -a "$MLOG" ; then printf "${OK} fzf installed successfully.\n" 2>&1 | tee -a "$MLOG" else echo -e "${ERROR} Installation failed for fzf." 2>&1 | tee -a "$MLOG"