diff options
author | Nicholas Lundgaard <[email protected]> | 2016-05-23 12:58:44 -0500 |
---|---|---|
committer | Nicholas Lundgaard <[email protected]> | 2016-05-23 12:58:44 -0500 |
commit | 4e695ae78db8dc8c2a70f15966c2bb40d7504ff6 (patch) | |
tree | 3c924650a20bb147ef0af97c1feaf2171109522f | |
parent | 193f2abc57d4e625bc9a22ff2d9a78838b476c84 (diff) | |
download | kerl-4e695ae78db8dc8c2a70f15966c2bb40d7504ff6.tar.gz kerl-4e695ae78db8dc8c2a70f15966c2bb40d7504ff6.tar.bz2 kerl-4e695ae78db8dc8c2a70f15966c2bb40d7504ff6.zip |
use 'curl -q' in 'get_tarball_releases()'
This bypasses processing `~/.curlrc`, eliminating the chance that options set in that file may result in errant, unexpected behavior from this curl call.
-rwxr-xr-x | kerl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -193,7 +193,7 @@ get_git_releases() get_tarball_releases() { - curl -L -s $ERLANG_DOWNLOAD_URL/ | \ + curl -q -L -s $ERLANG_DOWNLOAD_URL/ | \ sed $SED_OPT -e 's/^.*<[aA] [hH][rR][eE][fF]=\"\otp_src_([-0-9A-Za-z_.]+)\.tar\.gz\">.*$/\1/' \ -e '/^R1|^[0-9]/!d' | \ sed -e "s/^R\(.*\)/\1:R\1/" | sed -e "s/^\([^\:]*\)$/\1-z:\1/" | sort | cut -d':' -f2 |