* Don't error out if estcmd fails, just print a warning message. estcmd is
to fragile to let it kill ikiwiki.master
parent
dd758c7118
commit
d442f1b2fc
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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]]
|
||||
|
|
Loading…
Reference in New Issue