mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 13:46:49 +00:00
Merge pull request #10059 from heitbaum/tools
tools/mkpkg/update_common_functions: replace wget with curl for fetching archives
This commit is contained in:
commit
8c49fb9b9e
@ -136,7 +136,7 @@ set_pkg_version() {
|
||||
download_pkg_file() {
|
||||
local pkg_name="$1"
|
||||
local pkg_url=$(get_pkg_var "${pkg_name}" PKG_URL)
|
||||
wget -q -O "${TMP_PKG_FILE}" "${pkg_url}"
|
||||
curl -q --location --max-redirs 5 --output "${TMP_PKG_FILE}" "${pkg_url}"
|
||||
}
|
||||
|
||||
extract_pkg_file() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user