diff options
Diffstat (limited to 'scripts/nix-channel.in')
-rw-r--r-- | scripts/nix-channel.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/nix-channel.in b/scripts/nix-channel.in index 41a75adf14a2..fd6639ec1b31 100644 --- a/scripts/nix-channel.in +++ b/scripts/nix-channel.in @@ -98,7 +98,8 @@ sub update { my $fullURL = "$url/nixexprs.tar.bz2"; print "downloading Nix expressions from `$fullURL'...\n"; $ENV{"PRINT_PATH"} = 1; - my ($hash, $path) = `@bindir@/nix-prefetch-url '$fullURL' 2> /dev/null`; + $ENV{"QUIET"} = 1; + my ($hash, $path) = `@bindir@/nix-prefetch-url '$fullURL'`; die "cannot fetch `$fullURL'" if $? != 0; chomp $path; $inputs .= '"' . $channelName . '"' . " " . $path . " "; |