about summary refs log tree commit diff
path: root/perl
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2012-03-05T17·13+0100
committerEelco Dolstra <e.dolstra@tudelft.nl>2012-03-05T17·13+0100
commit2b4964f31979b5227a7a51b646d2e4bbb5ef6579 (patch)
treef380690318c3613ede8fd80d604c4102621e67bd /perl
parent56042a120a3149ec7ddfb36c6f7d7b841ba6dfeb (diff)
Restore progress indication during nix-copy-closure
Diffstat (limited to 'perl')
-rw-r--r--perl/lib/Nix/CopyClosure.pm1
1 files changed, 0 insertions, 1 deletions
diff --git a/perl/lib/Nix/CopyClosure.pm b/perl/lib/Nix/CopyClosure.pm
index 045f6bfaf1..7a711766ba 100644
--- a/perl/lib/Nix/CopyClosure.pm
+++ b/perl/lib/Nix/CopyClosure.pm
@@ -33,7 +33,6 @@ sub copyTo {
     # Export the store paths and import them on the remote machine.
     if (scalar @missing > 0) {
         print STDERR "copying ", scalar @missing, " missing paths to ‘$sshHost’...\n";
-        #print STDERR "  $_\n" foreach @missing;
         unless ($dryRun) {
             open SSH, "| $compressor ssh $sshHost @{$sshOpts} '$decompressor nix-store --import'" or die;
             exportPaths(fileno(SSH), $sign, @missing);