diff --git a/scripts/download-using-manifests.pl.in b/scripts/download-using-manifests.pl.in index fe80bc11f..4ae24067b 100644 --- a/scripts/download-using-manifests.pl.in +++ b/scripts/download-using-manifests.pl.in @@ -295,7 +295,7 @@ sub downloadFile { $ENV{"PRINT_PATH"} = 1; $ENV{"QUIET"} = 1; my ($hash, $path) = `$binDir/nix-prefetch-url '$url'`; - die "download of `$url' failed" unless $? == 0; + die "download of `$url' failed" . ($! ? ": $!" : "") unless $? == 0; chomp $path; return $path; }