From 06bf3832bc4100ac3fde6d01e988e21e644beeb9 Mon Sep 17 00:00:00 2001 From: fukachan Date: Sat, 20 Apr 2002 04:25:22 +0000 Subject: bug fix subdir checking --- fml/lib/FML/Process/HTMLify.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fml') diff --git a/fml/lib/FML/Process/HTMLify.pm b/fml/lib/FML/Process/HTMLify.pm index 0b97afb9..c275585b 100644 --- a/fml/lib/FML/Process/HTMLify.pm +++ b/fml/lib/FML/Process/HTMLify.pm @@ -3,7 +3,7 @@ # Copyright (C) 2001,2002 Ken'ichi Fukamachi # All rights reserved. # -# $FML: HTMLify.pm,v 1.15 2002/04/15 04:01:47 fukachan Exp $ +# $FML: HTMLify.pm,v 1.16 2002/04/19 05:21:54 fukachan Exp $ # package FML::Process::HTMLify; @@ -181,7 +181,7 @@ sub _check_subdir_exists next if /^\./; $subdir = File::Spec->catfile($src_dir, $_); - if ($subdir) { + if (-d $subdir) { push(@subdir, $subdir); $status = 1; } -- cgit v1.2.1