diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-02-17 15:07:42 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-02-17 15:07:42 +0000 |
commit | e7574cab448f574428581155571b798be705d769 (patch) | |
tree | 7ac5d0a9a2f7672245983f2a2275a4e3aa1e6fc0 /abuild.in | |
parent | dabc0dea8c0cca9a8f7e8cc86d3eee7f34b92bf6 (diff) | |
download | abuild-e7574cab448f574428581155571b798be705d769.tar.gz abuild-e7574cab448f574428581155571b798be705d769.tar.bz2 abuild-e7574cab448f574428581155571b798be705d769.tar.xz abuild-e7574cab448f574428581155571b798be705d769.zip |
abuild: always add -k to curl in case http -> https redirects
Diffstat (limited to 'abuild.in')
-rwxr-xr-x | abuild.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -325,7 +325,7 @@ uri_fetch() { fetcher=wget_fallback else fetcher=curl - opts="$opts -L -f" + opts="$opts -L -f -k" fi $fetcher $opts -o "$SRCDEST/$d.part" "$uri" \ |