From 99da51d4debda195d8d264b9c060fe4304359e4f Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 20 Oct 2004 14:05:48 +0000 Subject: [PATCH] * Show error messages from curl. --- scripts/readmanifest.pm.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/readmanifest.pm.in b/scripts/readmanifest.pm.in index 3bda0f067..d5527bf3b 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";