diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-10-20T14·05+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-10-20T14·05+0000 |
commit | 99da51d4debda195d8d264b9c060fe4304359e4f (patch) | |
tree | de38ed4f6a5a19f47d0a40486dd5f5521ecd7400 /scripts/readmanifest.pm.in | |
parent | 2cd590d96c7bfa6843384073102099b545097c93 (diff) |
* Show error messages from curl.
Diffstat (limited to 'scripts/readmanifest.pm.in')
-rw-r--r-- | scripts/readmanifest.pm.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/readmanifest.pm.in b/scripts/readmanifest.pm.in index 3bda0f067b2f..d5527bf3b32a 100644 --- a/scripts/readmanifest.pm.in +++ b/scripts/readmanifest.pm.in @@ -11,7 +11,7 @@ sub processURL { print "obtaining list of Nix archives at $url...\n"; system("@curl@ --fail --silent --show-error --location --max-redirs 20 " . - "'$url' > '$manifest' 2> /dev/null") == 0 + "'$url' > '$manifest'") == 0 or die "curl failed: $?"; open MANIFEST, "<$manifest"; |