about summary refs log tree commit diff
path: root/perl
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-09-18T18·04+0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-09-18T18·04+0200
commit726abdecfb75227c8e12d2689db62fd5ffc770f5 (patch)
tree40aa81e6265e748efc7568a7acbb6e30876ee653 /perl
parent7d7b67986a1f9d78dccd0bd4ad811af7dc65f60f (diff)
Remove debug statement
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 10d26c3a71..91b418bbfc 100644
--- a/perl/lib/Nix/CopyClosure.pm
+++ b/perl/lib/Nix/CopyClosure.pm
@@ -102,7 +102,6 @@ sub oldCopyTo {
     # 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 "@missing\n";
         unless ($dryRun) {
             open SSH, "| ssh $sshHost @{$sshOpts} @globalSshOpts 'nix-store --import' > /dev/null" or die;
             exportPaths(fileno(SSH), $sign, @missing);