From a0a7a4e0875c2cfdd2895bb1b4a16c998cde576e Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 16 Oct 2003 19:24:04 +0000 Subject: [PATCH] * Remove some debug output. --- scripts/nix-pull.in | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/nix-pull.in b/scripts/nix-pull.in index 8cd276801e..ffdcf89821 100644 --- a/scripts/nix-pull.in +++ b/scripts/nix-pull.in @@ -125,7 +125,6 @@ while () { my $srcpath = $srcpaths[$i++]; push @subs, $srcpath; push @subs, $subpath; - print "$srcpath $subpath\n"; } waitpid $pid, 0; @@ -134,13 +133,11 @@ $? == 0 or die "fix failed"; # Register all substitutes. print STDERR "registering substitutes...\n"; -print "@subs\n"; system "nix --substitute @subs"; if ($?) { die "`nix --substitute' failed"; } # Register all successors. print STDERR "registering successors...\n"; -print "@sucs\n"; -system "nix --successor -vvvv @sucs"; +system "nix --successor @sucs"; if ($?) { die "`nix --successor' failed"; }