1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 17:50:04 +08:00

wget isn't installed on all systems by default (like mine). Use curl instead

This commit is contained in:
Priyank Chaudhary 2018-01-26 22:26:09 -08:00
parent ba59ca2520
commit d78157367d

View File

@ -212,7 +212,7 @@ download_font () {
success "Downloaded $1"
else
info "Downloading $1"
wget -q -O "$path" "$url"
curl -s -o "$path" "$url"
success "Downloaded $1"
fi
}