Skip to content
Snippets Groups Projects
Commit 1ad9d112 authored by Eelco Dolstra's avatar Eelco Dolstra
Browse files

* Only include predecessors that are themselves being pushed.

  Otherwise the substitute mechanism can break in subtle ways.
parent 00fe1a50
No related branches found
No related tags found
No related merge requests found
......@@ -139,7 +139,12 @@ for (my $n = 0; $n < scalar @storepaths; $n++) {
while (<PREDS>) {
chomp;
die unless (/^\//);
print MANIFEST " SuccOf: $_\n";
my $pred = $_;
# Only include predecessors that are themselves being
# pushed.
if (defined $storepaths{$pred}) {
print MANIFEST " SuccOf: $pred\n";
}
}
close PREDS;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment