From a87cfbcb8d0b97a4261cd9337bd80a16dde266ce Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 11 Sep 2008 01:41:55 -0400 Subject: Improve error message if external plugin fails to load. Closes: #498458 --- IkiWiki.pm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'IkiWiki.pm') diff --git a/IkiWiki.pm b/IkiWiki.pm index 81c9a92f4..4e4da11c5 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -520,7 +520,11 @@ sub loadplugin ($) { #{{{ foreach my $dir (defined $config{libdir} ? possibly_foolish_untaint($config{libdir}) : undef, "$installdir/lib/ikiwiki") { if (defined $dir && -x "$dir/plugins/$plugin") { - require IkiWiki::Plugin::external; + eval { require IkiWiki::Plugin::external }; + if ($@) { + my $reason=$@; + error(sprintf(gettext("failed to load external plugin needed for %s plugin: %s"), $plugin, $reason)); + } import IkiWiki::Plugin::external "$dir/plugins/$plugin"; $loaded_plugins{$plugin}=1; return 1; -- cgit v1.2.3