* Don't error out if estcmd fails, just print a warning message. estcmd is

to fragile to let it kill ikiwiki.
master
joey 2007-02-20 03:17:09 +00:00
parent dd758c7118
commit d442f1b2fc
3 changed files with 7 additions and 2 deletions

View File

@ -135,7 +135,7 @@ sub estcmd ($;@) { #{{{
foreach (@_) {
print CHILD "$_\n";
}
close(CHILD) || error("estcmd @params exited nonzero: $?");
close(CHILD) || print STDERR "estcmd @params exited nonzero: $?\n";
}
else {
# child

4
debian/changelog vendored
View File

@ -18,8 +18,10 @@ ikiwiki (1.44) UNRELEASED; urgency=low
* Support anchors in wikilinks.
* Add a "more" plugin based on one contributed by Ben to allow implementing
those dreaded "Read more" links in blogs.
* Don't error out if estcmd fails, just print a warning message. estcmd is
to fragile to let it kill ikiwiki.
-- Joey Hess <joeyh@debian.org> Mon, 19 Feb 2007 20:56:25 -0500
-- Joey Hess <joeyh@debian.org> Mon, 19 Feb 2007 22:12:25 -0500
ikiwiki (1.43) unstable; urgency=low

View File

@ -15,3 +15,6 @@ exactly. --[[Joey]]
>>> Yes, it seems to have happened again. Added debugging to track it
>>> down next time it occurs. It seems to be happening when you add things
>>> to patchqueue. --[[Joey]]
>>> Got it, it seems that htperestradier was dying and this was killing
>>> ikiwiki before it could save state filed && [[bugs/done]], for real this time. --[[Joey]]