blob: 92b87465261d0b34d51c5e7d3b474f00ab9a9d75 (
plain) (
tree)
|
|
#! @shell@ -e
echo "downloading $url into $out"
prefetch=@storedir@/nix-prefetch-url-$outputHash
if test -f "$prefetch"; then
echo "using prefetched $prefetch";
@coreutils@/mv $prefetch $out
else
@curl@ --fail --location --max-redirs 20 "$url" > "$out"
fi
|