1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-06 09:56:12 +02:00

archimport: fix a in new changeset applyer addition

Fix a stupid bug I introduced when splitting the
accurate and fast changeset appliers.

Also, remove an old debugging statement I added

Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Martin Langhoff <martin@catalyst.net.nz>
This commit is contained in:
Eric Wong 2005-11-23 23:58:16 -08:00 committed by Martin Langhoff
parent 6e33101abd
commit 10945e006a

View File

@ -499,7 +499,7 @@ sub process_patchset_fast {
#
if (ptag($ps->{id})) {
$opt_v && print " * Skipping already imported: $ps->{id}\n";
return 0;
next;
}
print " * Starting to work on $ps->{id}\n";
@ -578,10 +578,6 @@ sub process_patchset_fast {
print " + commit $commitid\n";
$opt_v && print " + commit date is $ps->{date} \n";
$opt_v && print " + parents: ",join(' ',@par),"\n";
if (my $dirty = `git-diff-files`) {
die "22 Unclean tree when about to process $ps->{id} " .
" - did we fail to commit cleanly before?\n$dirty";
}
}
if ($opt_v) {