Skip to content
Snippets Groups Projects
Commit 505dc049 authored by Christian Sturm's avatar Christian Sturm Committed by Junegunn Choi
Browse files

Make install script to work with non GNU tar (#871)

parent 54a4ab0f
No related branches found
No related tags found
No related merge requests found
......@@ -99,11 +99,11 @@ link_fzf_in_path() {
}
try_curl() {
command -v curl > /dev/null && curl -fL $1 | tar -xz
command -v curl > /dev/null && curl -fL $1 | tar -xzf -
}
try_wget() {
command -v wget > /dev/null && wget -O - $1 | tar -xz
command -v wget > /dev/null && wget -O - $1 | tar -xzf -
}
download() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment