aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2007-08-15 09:24:06 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2007-08-15 09:24:06 +0000
commitdbc0170ed998484178780d9390ae0d4434bf93b0 (patch)
tree8debe7465e664b08cd5b30994135c86dac81ca49 /scripts
parent5c793ad03e08f8f795397af1d49034ac6f616ade (diff)
* Show errors in nix-prefetch-url.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/nix-prefetch-url.in2
-rw-r--r--scripts/nix-pull.in5
-rw-r--r--scripts/nix-push.in2
3 files changed, 5 insertions, 4 deletions
diff --git a/scripts/nix-prefetch-url.in b/scripts/nix-prefetch-url.in
index 186804d8e..5621d5204 100644
--- a/scripts/nix-prefetch-url.in
+++ b/scripts/nix-prefetch-url.in
@@ -37,7 +37,7 @@ fi
doDownload() {
- @curl@ $cacheFlags --fail -# --show-error --location --max-redirs 20 --disable-epsv \
+ @curl@ $cacheFlags --fail -# --location --max-redirs 20 --disable-epsv \
--cookie-jar $tmpPath/cookies "$url" -o $tmpFile
}
diff --git a/scripts/nix-pull.in b/scripts/nix-pull.in
index 333a1df87..016e330dc 100644
--- a/scripts/nix-pull.in
+++ b/scripts/nix-pull.in
@@ -36,8 +36,9 @@ sub downloadFile {
$ENV{"PRINT_PATH"} = 1;
$ENV{"QUIET"} = 1;
my ($dummy, $path) = `$binDir/nix-prefetch-url '$url'`;
- chomp $path;
+ die "cannot fetch `$url'" if $? != 0;
die "nix-prefetch-url did not return a path" unless defined $path;
+ chomp $path;
return $path;
}
@@ -70,7 +71,7 @@ sub processURL {
}
if (readManifest($manifest, \%narFiles, \%localPaths, \%patches) < 3) {
- die "manifest `$url' is too old (i.e., for Nix <= 0.7)\n";
+ die "`$url' is not manifest or it is too old (i.e., for Nix <= 0.7)\n";
}
if ($skipWrongStore) {
diff --git a/scripts/nix-push.in b/scripts/nix-push.in
index e5bd404a2..992622fbb 100644
--- a/scripts/nix-push.in
+++ b/scripts/nix-push.in
@@ -265,7 +265,7 @@ print STDERR "uploading manifest...\n";
if ($localCopy) {
copyFile $manifest, $localManifestFile;
} else {
- system("$curl --show-error --upload-file " .
+ system("$curl --show-error --upload-file " .
"'$manifest' '$manifestPutURL' > /dev/null") == 0 or
die "curl failed on $manifest: $?";
}