Stop wiki update script trying to be "helpful"

Instead of trying to advise how to import some (but not all) of
the modules, just require them in the normal way.

Closes #1763
This commit is contained in:
Tom Hughes 2018-09-26 22:43:30 +01:00
parent d0e45c7c8e
commit 6d68c0b22d

View file

@ -3,20 +3,11 @@ use 5.010;
use strict;
use warnings;
use Pod::Usage ();
use Getopt::Long ();
BEGIN {
eval "require MediaWiki::API; require YAML::XS;" or do {
print "You have to install some modules via CPAN to run this:\n";
print " sudo cpanp MediaWiki::API YAML::XS\n";
exit 1;
};
}
use Getopt::Long;
use Pod::Usage;
use MediaWiki::API;
use Test::More qw(no_plan);
use YAML::XS qw(Dump);
use Test::More 'no_plan';
=head1 NAME