[install] Fix error in install script

Close #608
This commit is contained in:
Junegunn Choi 2016-07-04 13:00:30 +09:00
parent 34965edcda
commit 64747c2324
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627
1 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,6 @@
#!/usr/bin/env bash
set -u
set -o pipefail
[[ "$@" =~ --pre ]] && version=0.13.2 pre=1 ||
version=0.13.2 pre=0
@ -137,10 +136,12 @@ download() {
fi
local url=https://github.com/junegunn/fzf-bin/releases/download/$version/${1}.tgz
set -o pipefail
if ! (try_curl $url || try_wget $url); then
binary_error="Failed to download with curl and wget"
return
fi
set +o pipefail
if [ ! -f $1 ]; then
binary_error="Failed to download ${1}"