fix: remove -Z (#1505)

* fix: remove -Z

parallel isn't required and might be missing on some hosts
fixes #1504

* docs: update changelog
This commit is contained in:
Jakub Panek 2022-10-13 19:53:24 +02:00 committed by GitHub
parent 2ee625d4b1
commit c85af33d5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -6,6 +6,8 @@
### Bug Fixes
- [#1505](https://github.com/lapce/lapce/pull/1505): Fix proxy download for hosts with curl without -Z flag
## 0.2.1
### Features/Changes

View File

@ -65,7 +65,7 @@ _URL="https://github.com/lapce/lapce/releases/download/${_VER}/lapce-proxy-${_OS
if test_cmd 'curl'; then
# How old curl has these options? we'll find out
printf 'Downloading using curl\n'
curl --proto '=https' --tlsv1.2 -LZfS -O "${_URL}"
curl --proto '=https' --tlsv1.2 -LfS -O "${_URL}"
# curl --proto '=https' --tlsv1.2 -LZfS -o "${_TMP}/lapce-proxy-${_OS}-${_ARCH}.gz" "${_URL}"
elif test_cmd 'wget'; then
printf 'Downloading using wget\n'