diff options
-rw-r--r-- | debian/changelog | 7 | ||||
-rwxr-xr-x | vidir | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 5c449e7..884a423 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +moreutils (0.19) unstable; urgency=low + + * vidir: Don't ignore files whose names end in dots. Closes: #398141 + Thanks, Bram Sanders. + + -- Joey Hess <joeyh@debian.org> Sat, 11 Nov 2006 22:02:17 -0500 + moreutils (0.18) unstable; urgency=low * mispipe.docbook: Typo. Closes: #386756 @@ -96,7 +96,7 @@ open (OUT, ">".$tmp->filename) || die "$0: cannot write ".$tmp->filename.": $!\n my %item; my $c=0; foreach (@dir) { - next if /(.*\/)?\.$/ || /(.*\/)?\.\.$/; + next if /^(.*\/)?\.$/ || /^(.*\/)?\.\.$/; $item{++$c}=$_; print OUT "$c\t$_\n"; } |