From: lace <> Date: Sat, 2 Jun 2007 12:48:52 +0000 (+0000) Subject: Consider New files as valid CVS entries. X-Git-Url: http://git.jankratochvil.net/?p=nethome.git;a=commitdiff_plain;h=013b2312fb85ca2980a2b920d10998a54a63a1e6 Consider New files as valid CVS entries. --- diff --git a/bin/cvsutil b/bin/cvsutil index 026d0cd..18cdce1 100755 --- a/bin/cvsutil +++ b/bin/cvsutil @@ -167,7 +167,8 @@ sub localreaddir next if /^D$/; do { push @dir_dirs ,$1; next; } if m#^D/([^/]*)/#; next if m#^/[^/]*/-#; # deleted file: /filename/-1.1/dummy timestamp// - next if m#^/[^/]*/0/#; # new file: /filename/0/dummy timestamp// + # New file is a valid entry! + # next if m#^/[^/]*/0/#; # new file: /filename/0/dummy timestamp// do { push @dir_files,$1; next; } if m#^/([^/]*)/# ; mayfatal "File ".ENTRIES." contains invalid line \"$_\"",("noerrno"=>1); }