diff options
author | Shea Levy <shea@shealevy.com> | 2012-07-08T14·19-0400 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-07-09T19·29-0400 |
commit | c4df7472676cac9bf5243ee8bc7cd0017f91a28d (patch) | |
tree | d6d724b878fca138a9d287d6c40c8f5e5c8831b9 /corepkgs/fetchurl/builder.sh.in | |
parent | 27f0c34390d6680a843e2d4fad527dc672ed35c6 (diff) |
Resurrect old corepkgs fetchurl
Diffstat (limited to 'corepkgs/fetchurl/builder.sh.in')
-rw-r--r-- | corepkgs/fetchurl/builder.sh.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/corepkgs/fetchurl/builder.sh.in b/corepkgs/fetchurl/builder.sh.in new file mode 100644 index 000000000000..02abb18b4b77 --- /dev/null +++ b/corepkgs/fetchurl/builder.sh.in @@ -0,0 +1,5 @@ +#! @shell@ -e + +echo "downloading $url into $out" + +@curl@ --fail --location --max-redirs 20 "$url" > "$out" |