diff options
Diffstat (limited to 'corepkgs/fetchurl/builder.sh.in')
-rw-r--r-- | corepkgs/fetchurl/builder.sh.in | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/corepkgs/fetchurl/builder.sh.in b/corepkgs/fetchurl/builder.sh.in index 92b87465261d..02abb18b4b77 100644 --- a/corepkgs/fetchurl/builder.sh.in +++ b/corepkgs/fetchurl/builder.sh.in @@ -2,10 +2,4 @@ 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 +@curl@ --fail --location --max-redirs 20 "$url" > "$out" |