diff options
author | joeyh <joeyh> | 2006-11-12 03:03:46 +0000 |
---|---|---|
committer | joeyh <joeyh> | 2006-11-12 03:03:46 +0000 |
commit | 0a72631e595507348b6a5518eb7b586b3a5c2bf6 (patch) | |
tree | f1a60c8d455805189107ccbbc565b948c96c9b75 | |
parent | a7cc6680fb9f2ce1f4f785d09d23e1274c3972b9 (diff) | |
download | moreutils-0.19.tar.gz |
releasing version 0.190.19
-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"; } |