diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-02-27T13·55+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-02-27T13·55+0000 |
commit | d4ca5c395290da9a517df99dfbb79d2186930c83 (patch) | |
tree | 22a00184a92e1b603dc249c923dfb849d089f288 /scripts/nix-prefetch-url.in | |
parent | fd2e14b3c886c4ff6a702f22bb7f4494b1fbec39 (diff) |
* Use the regular progress bar; the hash bar isn't very useful when
the size of the download isn't known in advance.
Diffstat (limited to 'scripts/nix-prefetch-url.in')
-rw-r--r-- | scripts/nix-prefetch-url.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/nix-prefetch-url.in b/scripts/nix-prefetch-url.in index 1e570a1544da..a2a8a701fe69 100644 --- a/scripts/nix-prefetch-url.in +++ b/scripts/nix-prefetch-url.in @@ -60,7 +60,7 @@ removeTempDir() { doDownload() { - @curl@ $cacheFlags --fail -# --location --max-redirs 20 --disable-epsv \ + @curl@ $cacheFlags --fail --location --max-redirs 20 --disable-epsv \ --cookie-jar $tmpPath/cookies "$url" -o $tmpFile } |