m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-17 07:43:39 -05:00

[install] Always download binary when --pre is set

This commit is contained in:
Junegunn Choi
2015-08-02 15:09:57 +09:00
parent 9278f3acd2
commit 7833fa7396

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env bash
version=0.10.1
[[ "$@" =~ --pre ]] && version=0.10.2
[[ "$@" =~ --pre ]] && version=0.10.2 pre=1 ||
version=0.10.1 pre=0
cd $(dirname $BASH_SOURCE)
fzf_base=$(pwd)
@@ -46,12 +46,14 @@ symlink() {
download() {
echo "Downloading bin/fzf ..."
if [[ ! $1 =~ dev && -x "$fzf_base"/bin/fzf ]]; then
if [ $pre = 0 ]; then
if [ -x "$fzf_base"/bin/fzf ]; then
echo " - Already exists"
check_binary && return
elif [ -x "$fzf_base"/bin/$1 ]; then
symlink $1 && check_binary && return
fi
fi
mkdir -p "$fzf_base"/bin && cd "$fzf_base"/bin
if [ $? -ne 0 ]; then
binary_error="Failed to create bin directory"