diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2012-03-05T19·52+0100 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2012-03-05T19·52+0100 |
commit | d645633643ff806bff8fcd1677d6ac87509f40e9 (patch) | |
tree | 8adf171709ef0a291ca2a7c641410053a27a0499 /scripts | |
parent | 35355fc1fcffbe859395e360c0a6a1463f137d63 (diff) |
nix-copy-closure: don't print copied path on stdout
We're already printing progress on stderr, so printing them on stdout afterwards is kind of useless.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/nix-copy-closure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/nix-copy-closure.in b/scripts/nix-copy-closure.in index b752c272b2af..1ed24d285208 100755 --- a/scripts/nix-copy-closure.in +++ b/scripts/nix-copy-closure.in @@ -103,7 +103,7 @@ else { # Copy FROM the remote machine. $decompressor = "$decompressor |" if $decompressor ne ""; unless ($dryRun) { my $extraOpts = $sign ? "--sign" : ""; - system("set -f; ssh $sshHost @sshOpts 'nix-store --export $extraOpts @missing $compressor' | $decompressor $Nix::Config::binDir/nix-store --import") == 0 + system("set -f; ssh $sshHost @sshOpts 'nix-store --export $extraOpts @missing $compressor' | $decompressor $Nix::Config::binDir/nix-store --import > /dev/null") == 0 or die "copying store paths from remote machine `$sshHost' failed: $?"; } } |