Skip to content

Commit

Permalink
Merge branch 'maint' of git://repo.or.cz/git/fastimport into maint
Browse files Browse the repository at this point in the history
* 'maint' of git://repo.or.cz/git/fastimport:
  import-tars: Use the "Link indicator" to identify directories
  • Loading branch information
Junio C Hamano committed May 16, 2007
2 parents cf606e3 + df8cfac commit df9f91f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/fast-import/import-tars.perl
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
$mode = oct $mode;
$size = oct $size;
$mtime = oct $mtime;
next if $mode & 0040000;
next if $typeflag == 5; # directory

print FI "blob\n", "mark :$next_mark\n", "data $size\n";
while ($size > 0 && read(I, $_, 512) == 512) {
Expand Down

0 comments on commit df9f91f

Please sign in to comment.