diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-10-16T19·24+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-10-16T19·24+0000 |
commit | a0a7a4e0875c2cfdd2895bb1b4a16c998cde576e (patch) | |
tree | dd6c08001c22d397f37eae6196b6df644dfdd046 /scripts/nix-pull.in | |
parent | 0791282b2f42313c94dd9bc85b24428e585cd099 (diff) |
* Remove some debug output.
Diffstat (limited to 'scripts/nix-pull.in')
-rw-r--r-- | scripts/nix-pull.in | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/scripts/nix-pull.in b/scripts/nix-pull.in index 8cd276801ee6..ffdcf89821a4 100644 --- a/scripts/nix-pull.in +++ b/scripts/nix-pull.in @@ -125,7 +125,6 @@ while (<READ>) { 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"; } |