aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/comments.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2010-06-17 16:54:03 -0400
committerJoey Hess <joey@kitenet.net>2010-06-17 16:54:03 -0400
commitcb4b99929757f970d5ae697f0d09514ad624ed46 (patch)
tree65c7d2b8473204302398f68e279a2e8e96bcc58b /IkiWiki/Plugin/comments.pm
parentf70bc8184ace2cf10687daedf2b7176f32ef8a97 (diff)
downloadikiwiki-cb4b99929757f970d5ae697f0d09514ad624ed46.tar
ikiwiki-cb4b99929757f970d5ae697f0d09514ad624ed46.tar.gz
avoid dying if cannot chdir to an underlaydir
Diffstat (limited to 'IkiWiki/Plugin/comments.pm')
-rw-r--r--IkiWiki/Plugin/comments.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/comments.pm b/IkiWiki/Plugin/comments.pm
index 17cd99c3b..d1558001a 100644
--- a/IkiWiki/Plugin/comments.pm
+++ b/IkiWiki/Plugin/comments.pm
@@ -669,7 +669,7 @@ sub comments_pending () {
my $extension=shift;
return unless -d $dir;
- chdir($dir) || die "chdir: $!";
+ chdir($dir) || die "chdir $dir: $!";
find({
no_chdir => 1,
@@ -686,7 +686,7 @@ sub comments_pending () {
}
}, ".");
- chdir($origdir) || die "chdir: $!";
+ chdir($origdir) || die "chdir $origdir: $!";
};
$find_comments->($config{srcdir}, "._comment_pending");