mirror of
https://github.com/rbenv/ruby-build.git
synced 2025-11-27 14:20:56 +01:00
Remove needless quote
Before: broken command line option curl -qsILf "" "$1" >&4 2>&1 curl -qsILf "--ipv4" "$1" >&4 2>&1 After: curl -qsILf "$1" >&4 2>&1 curl -qsILf --ipv4 "$1" >&4 2>&1
This commit is contained in:
parent
8ff2af4224
commit
43d8d0243e
1 changed files with 4 additions and 4 deletions
|
|
@ -250,28 +250,28 @@ http_head_curl() {
|
||||||
options=""
|
options=""
|
||||||
[ -n "${IPV4}" ] && options="--ipv4"
|
[ -n "${IPV4}" ] && options="--ipv4"
|
||||||
[ -n "${IPV6}" ] && options="--ipv6"
|
[ -n "${IPV6}" ] && options="--ipv6"
|
||||||
curl -qsILf "${options}" "$1" >&4 2>&1
|
curl -qsILf ${options} "$1" >&4 2>&1
|
||||||
}
|
}
|
||||||
|
|
||||||
http_get_curl() {
|
http_get_curl() {
|
||||||
options=""
|
options=""
|
||||||
[ -n "${IPV4}" ] && options="--ipv4"
|
[ -n "${IPV4}" ] && options="--ipv4"
|
||||||
[ -n "${IPV6}" ] && options="--ipv6"
|
[ -n "${IPV6}" ] && options="--ipv6"
|
||||||
curl -q -o "${2:--}" -sSLf "${options}" "$1"
|
curl -q -o "${2:--}" -sSLf ${options} "$1"
|
||||||
}
|
}
|
||||||
|
|
||||||
http_head_wget() {
|
http_head_wget() {
|
||||||
options=""
|
options=""
|
||||||
[ -n "${IPV4}" ] && options="--inet4-only"
|
[ -n "${IPV4}" ] && options="--inet4-only"
|
||||||
[ -n "${IPV6}" ] && options="--inet6-only"
|
[ -n "${IPV6}" ] && options="--inet6-only"
|
||||||
wget -q --spider "${options}" "$1" >&4 2>&1
|
wget -q --spider ${options} "$1" >&4 2>&1
|
||||||
}
|
}
|
||||||
|
|
||||||
http_get_wget() {
|
http_get_wget() {
|
||||||
options=""
|
options=""
|
||||||
[ -n "${IPV4}" ] && options="--inet4-only"
|
[ -n "${IPV4}" ] && options="--inet4-only"
|
||||||
[ -n "${IPV6}" ] && options="--inet6-only"
|
[ -n "${IPV6}" ] && options="--inet6-only"
|
||||||
wget -nv "${options}" -O "${2:--}" "$1"
|
wget -nv ${options} -O "${2:--}" "$1"
|
||||||
}
|
}
|
||||||
|
|
||||||
fetch_tarball() {
|
fetch_tarball() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue